From 0ffadc48c633ce01fd0d17fd02494838163afb21 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Thu, 8 Oct 2020 15:01:46 -0700 Subject: [PATCH 01/17] init_commit --- plugins/filter/paths.py | 40 +++++++++++++++++++++++ plugins/module_utils/generate_paths.py | 45 ++++++++++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 plugins/filter/paths.py create mode 100644 plugins/module_utils/generate_paths.py diff --git a/plugins/filter/paths.py b/plugins/filter/paths.py new file mode 100644 index 0000000..fea97ff --- /dev/null +++ b/plugins/filter/paths.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Red Hat +# GNU General Public License v3.0+ +# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + + +""" +flatten a complex object to dot bracket notation +""" +from __future__ import absolute_import, division, print_function + +__metaclass__ = type + +from ansible.errors import AnsibleFilterError +from ansible.module_utils.common._collections_compat import ( + Mapping, + MutableMapping, +) + +from ansible_collections.ansible.utils.plugins.module_utils.generate_paths import ( + generate_paths, +) +from jinja2.filters import environmentfilter + + +def to_paths(obj, prepend=None): + return generate_paths(obj, prepend) + + +@environmentfilter +def get_path(environment, vars, path): + string_to_variable = "{{ %s }}" % path + return environment.from_string(string_to_variable).render(**vars) + + +class FilterModule(object): + """ Network filter """ + + def filters(self): + return {"to_paths": to_paths, "get_path": get_path} diff --git a/plugins/module_utils/generate_paths.py b/plugins/module_utils/generate_paths.py new file mode 100644 index 0000000..1ffc538 --- /dev/null +++ b/plugins/module_utils/generate_paths.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Red Hat +# GNU General Public License v3.0+ +# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + + +""" +flatten a complex object to dot bracket notation +""" +from __future__ import absolute_import, division, print_function + +__metaclass__ = type + +import re +from ansible.module_utils.common._collections_compat import ( + Mapping, + MutableMapping, +) + + +def generate_paths(nested_json, prepend): + out = {} + + def flatten(data, name=""): + if isinstance(data, (dict, Mapping, MutableMapping)): + for key, val in data.items(): + if name: + if re.match("^[a-zA-Z_][a-zA-Z0-9_]*$", key): + nname = name + ".{key}".format(key=key) + else: + nname = name + "['{key}']".format(key=key) + else: + nname = key + flatten(val, nname) + elif isinstance(data, list): + for idx, val in enumerate(data): + flatten(val, "{name}[{idx}]".format(name=name, idx=idx)) + else: + out[name] = data + + if prepend: + flatten({prepend: nested_json}) + else: + flatten(nested_json) + return out From 9d3a6cad0a184452879c80284c1227d24caf2805 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 10:07:26 -0700 Subject: [PATCH 02/17] get_path and to_paths --- README.md | 80 ++++-- docs/ansible.utils.get_path_lookup.rst | 270 ++++++++++++++++++ docs/ansible.utils.to_paths_lookup.rst | 253 ++++++++++++++++ galaxy.yml | 34 +-- meta/runtime.yml | 2 +- plugins/filter/paths.py | 24 +- plugins/lookup/get_path.py | 174 +++++++++++ plugins/lookup/to_paths.py | 157 ++++++++++ .../{generate_paths.py => path_utils.py} | 41 ++- tests/sanity/ignore-2.10.txt | 1 + tests/sanity/ignore-2.9.txt | 1 + 11 files changed, 974 insertions(+), 63 deletions(-) create mode 100644 docs/ansible.utils.get_path_lookup.rst create mode 100644 docs/ansible.utils.to_paths_lookup.rst create mode 100644 plugins/lookup/get_path.py create mode 100644 plugins/lookup/to_paths.py rename plugins/module_utils/{generate_paths.py => path_utils.py} (50%) create mode 100644 tests/sanity/ignore-2.10.txt create mode 100644 tests/sanity/ignore-2.9.txt diff --git a/README.md b/README.md index 0ddb655..0ca0592 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,76 @@ -# collection_template -You can build a new repository for an Ansible Collection using this template by following [Creating a repository from a template](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template). This README.md contains recommended headings for your collection README.md, with comments describing what each section should contain. Once you have created your collection repository, delete this paragraph and the title above it from your README.md. -# Foo Collection - -[![CI](https://github.com/ansible-collections/REPONAMEHERE/workflows/CI/badge.svg?event=push)](https://github.com/ansible-collections/REPONAMEHERE/actions) [![Codecov](https://img.shields.io/codecov/c/github/ansible-collections/REPONAMEHERE)](https://codecov.io/gh/ansible-collections/REPONAMEHERE) - +# Ansible Utilities Collection +[![CI](https://zuul-ci.org/gated.svg)](https://dashboard.zuul.ansible.com/t/ansible/builds?project=ansible-collections%2Fansible.utils) -## Tested with Ansible +The Ansible ``ansible.utils`` collection includes FIXME - + +## Ansible version compatibility -## External requirements +This collection has been tested against following Ansible versions: **>=2.9.10,<2.11**. - - -### Supported connections - +Plugins and modules within a collection may be tested with only specific Ansible versions. +A collection may contain metadata that identifies these versions. +PEP440 is the schema used to describe the versions of Ansible. + ## Included content - + +### Filter plugins +Name | Description +--- | --- +ansible.utils.get_path|Get the value within a variable using a path. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.get_path_lookup.rst) +ansible.utils.to_paths|Convert complex objects to paths. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst) +### Lookup plugins +Name | Description +--- | --- +[ansible.utils.get_path](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.get_path_lookup.rst)|Retrieve the value in a variable using a path +[ansible.utils.to_paths](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst)|Flatten a complex object into a dictionary of paths and values + + + +## Installing this collection + +You can install the ``ansible.utils`` collection with the Ansible Galaxy CLI: + + ansible-galaxy collection install ansible.utils + +You can also include it in a `requirements.yml` file and install it with `ansible-galaxy collection install -r requirements.yml`, using the format: + +```yaml +--- +collections: + - name: ansible.utils +``` ## Using this collection - +The most common use case for this collection is FIXME -See [Ansible Using collections](https://docs.ansible.com/ansible/latest/user_guide/collections_using.html) for more details. + +**NOTE**: For Ansible 2.9, you may not see deprecation warnings when you run your playbooks with this collection. Use this documentation to track when a module is deprecated. + +### See Also: + +* [Ansible Using collections](https://docs.ansible.com/ansible/latest/user_guide/collections_using.html) for more details. ## Contributing to this collection - +We welcome community contributions to this collection. If you find problems, please open an issue or create a PR against the [ansible.utils collection repository](https://github.com/ansible-collections/ansible.utils). See [Contributing to Ansible-maintained collections](https://docs.ansible.com/ansible/devel/community/contributing_maintained_collections.html#contributing-maintained-collections) for complete details. + +See the [Ansible Community Guide](https://docs.ansible.com/ansible/latest/community/index.html) for details on contributing to Ansible. + +### Code of Conduct +This collection follows the Ansible project's +[Code of Conduct](https://docs.ansible.com/ansible/devel/community/code_of_conduct.html). +Please read and familiarize yourself with this document. ## Release notes - -See the [changelog](https://github.com/ansible-collections/REPONAMEHERE/tree/main/CHANGELOG.rst). + +Release notes are available [here](https://github.com/ansible-collections/ansible.utils/blob/main/changelogs/CHANGELOG.rst) ## Roadmap @@ -43,20 +78,13 @@ See the [changelog](https://github.com/ansible-collections/REPONAMEHERE/tree/mai ## More information - - - [Ansible Collection overview](https://github.com/ansible-collections/overview) - [Ansible User guide](https://docs.ansible.com/ansible/latest/user_guide/index.html) - [Ansible Developer guide](https://docs.ansible.com/ansible/latest/dev_guide/index.html) -- [Ansible Collections Checklist](https://github.com/ansible-collections/overview/blob/master/collection_requirements.rst) - [Ansible Community code of conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html) -- [The Bullhorn (the Ansible Contributor newsletter)](https://us19.campaign-archive.com/home/?u=56d874e027110e35dea0e03c1&id=d6635f5420) -- [Changes impacting Contributors](https://github.com/ansible-collections/overview/issues/45) ## Licensing - - GNU General Public License v3.0 or later. See [LICENSE](https://www.gnu.org/licenses/gpl-3.0.txt) to see the full text. diff --git a/docs/ansible.utils.get_path_lookup.rst b/docs/ansible.utils.get_path_lookup.rst new file mode 100644 index 0000000..649e046 --- /dev/null +++ b/docs/ansible.utils.get_path_lookup.rst @@ -0,0 +1,270 @@ +.. _ansible.utils.get_path_lookup: + + +********************** +ansible.utils.get_path +********************** + +**Retrieve the value in a variable using a path** + + +Version added: 1.0 + +.. contents:: + :local: + :depth: 1 + + +Synopsis +-------- +- Use a ``path`` to retreive a nested value from a ``var`` +- ``get_path`` is also available as a ``filter_plugin`` for convenience + + + + +Parameters +---------- + +.. raw:: html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterChoices/DefaultsConfigurationComments
+
+ _terms + +
+ - + / required +
+
+ + +
The values below provided in the order var, path, wantlist=.
+
+
+ path + +
+ string + / required +
+
+ + +
The path in the var to retrieve the value of. The path needs to a be a valid jinja path
+
+
+ var + +
+ raw + / required +
+
+ + +
The variable from which the value should be extraced
+
+
+ wantlist + +
+ boolean +
+
+
    Choices: +
  • no
  • +
  • yes
  • +
+
+ +
If set to True, the return value will always be a list This can also be accomplished using query or q instead of lookup https://docs.ansible.com/ansible/latest/plugins/lookup.html
+
+
+ + + + +Examples +-------- + +.. code-block:: yaml+jinja + + - ansible.builtin.set_fact: + a: + b: + c: + d: + - 0 + - 1 + e: + - True + - False + + - name: Retrieve a value deep inside a using a path + ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.get_path', a, path) }}" + as_filter: "{{ a|ansible.utils.get_path(path) }}" + vars: + path: b.c.d[0] + + # TASK [ansible.builtin.set_fact] ************************************* + # ok: [nxos101] => changed=false + # ansible_facts: + # as_filter: '0' + # as_lookup: '0' + + + #### Working with hostvars + + - name: Retrieve a value deep inside all of the host's vars + ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.get_path', look_in, look_for) }}" + as_filter: "{{ look_in|ansible.utils.get_path(look_for) }}" + vars: + look_in: "{{ hostvars[inventory_hostname] }}" + look_for: a.b.c.d[0] + + # TASK [Retrieve a value deep inside all of the host's vars] ********** + # ok: [nxos101] => changed=false + # ansible_facts: + # as_filter: '0' + # as_lookup: '0' + + + #### Used alongside ansible.utils.to_paths + + - name: Get the paths for the object + ansible.builtin.set_fact: + paths: "{{ a|ansible.utils.to_paths(prepend='a') }}" + + - name: Retrieve the value of each path from vars + ansible.builtin.debug: + msg: "The value of path {{ path }} in vars is {{ value }}" + loop: "{{ paths.keys()|list }}" + loop_control: + label: "{{ item }}" + vars: + path: "{{ item }}" + value: "{{ vars|ansible.utils.get_path(item) }}" + + # TASK [Get the paths for the object] ********************************* + # ok: [nxos101] => changed=false + # ansible_facts: + # paths: + # a.b.c.d[0]: 0 + # a.b.c.d[1]: 1 + # a.b.c.e[0]: true + # a.b.c.e[1]: false + + # TASK [Retrieve the value of each path from vars] ******************** + # ok: [nxos101] => (item=a.b.c.d[0]) => + # msg: The value of path a.b.c.d[0] in vars is 0 + # ok: [nxos101] => (item=a.b.c.d[1]) => + # msg: The value of path a.b.c.d[1] in vars is 1 + # ok: [nxos101] => (item=a.b.c.e[0]) => + # msg: The value of path a.b.c.e[0] in vars is True + # ok: [nxos101] => (item=a.b.c.e[1]) => + # msg: The value of path a.b.c.e[1] in vars is False + + + #### Working with complex structures + + - name: Retrieve the current interface config + cisco.nxos.nxos_interfaces: + state: gathered + register: interfaces + + - name: Get the description of several interfaces + ansible.builtin.debug: + msg: "{{ rekeyed|ansible.utils.get_path(item) }}" + vars: + rekeyed: + by_name: "{{ interfaces.gathered|ansible.builtin.rekey_on_member('name') }}" + loop: + - by_name['Ethernet1/1'].description + - by_name['Ethernet1/2'].description + + # TASK [Get the description of several interfaces] ******************** + # ok: [nxos101] => (item=by_name['Ethernet1/1'].description) => + # msg: Configured by Ansible + # ok: [nxos101] => (item=by_name['Ethernet1/2'].description) => + # msg: Configured by Ansible Network + + + +Return Values +------------- +Common return values are documented `here `_, the following are the fields unique to this lookup: + +.. raw:: html + + + + + + + + + + + + +
KeyReturnedDescription
+
+ _raw + +
+ - +
+
+
One or more zero-based indicies of the matching list items
+
See wantlist if a list is always required
+
+
+

+ + +Status +------ + + +Authors +~~~~~~~ + +- Bradley Thornton (@cidrblock) + + +.. hint:: + Configuration entries for each entry type have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. diff --git a/docs/ansible.utils.to_paths_lookup.rst b/docs/ansible.utils.to_paths_lookup.rst new file mode 100644 index 0000000..329769e --- /dev/null +++ b/docs/ansible.utils.to_paths_lookup.rst @@ -0,0 +1,253 @@ +.. _ansible.utils.to_paths_lookup: + + +********************** +ansible.utils.to_paths +********************** + +**Flatten a complex object into a dictionary of paths and values** + + +Version added: 1.0 + +.. contents:: + :local: + :depth: 1 + + +Synopsis +-------- +- Flatten a complex object into a dictionary of paths and values. +- Paths are dot delimited whenever possible +- Brakets are used for list indicies and keys that contain special characters +- ``to_paths`` is also available as a filter plugin + + + + +Parameters +---------- + +.. raw:: html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterChoices/DefaultsConfigurationComments
+
+ _terms + +
+ - + / required +
+
+ + +
The values below provided in the order var, prepend=, wantlist=.
+
+
+ prepend + +
+ string +
+
+ + +
Prepend each path entry. Useful to add the initial var name.
+
+
+ var + +
+ raw + / required +
+
+ + +
The value of var will be will be used.
+
+
+ wantlist + +
+ boolean +
+
+
    Choices: +
  • no
  • +
  • yes
  • +
+
+ +
If set to True, the return value will always be a list. This can also be accomplished using query or q instead of lookup. https://docs.ansible.com/ansible/latest/plugins/lookup.html
+
+
+ + + + +Examples +-------- + +.. code-block:: yaml+jinja + + #### Simple examples + + - ansible.builtin.set_fact: + a: + b: + c: + d: + - 0 + - 1 + e: + - True + - False + + - ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.to_paths', a) }}" + as_filter: "{{ a|ansible.utils.to_paths }}" + + # TASK [set_fact] ***************************************************** + # task path: /home/brad/github/dotbracket/site.yaml:17 + # ok: [localhost] => changed=false + # ansible_facts: + # as_filter: + # b.c.d[0]: 0 + # b.c.d[1]: 1 + # b.c.e[0]: true + # b.c.e[1]: false + # as_lookup: + # b.c.d[0]: 0 + # b.c.d[1]: 1 + # b.c.e[0]: true + # b.c.e[1]: false + + - name: Use prepend to add the initial variable name + ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.to_paths', a, prepend=('a')) }}" + as_filter: "{{ a|ansible.utils.to_paths(prepend='a') }}" + + # TASK [Use prepend to add the initial variable name] ***************** + # ok: [nxos101] => changed=false + # ansible_facts: + # as_filter: + # a.b.c.d[0]: 0 + # a.b.c.d[1]: 1 + # a.b.c.e[0]: true + # a.b.c.e[1]: false + # as_lookup: + # a.b.c.d[0]: 0 + # a.b.c.d[1]: 1 + # a.b.c.e[0]: true + # a.b.c.e[1]: false + + + #### Using a complex object + + - name: Make an API call + uri: + url: "https://nxos101/restconf/data/openconfig-interfaces:interfaces" + headers: + accept: "application/yang.data+json" + url_password: password + url_username: admin + validate_certs: False + register: result + delegate_to: localhost + + - name: Flatten the complex object + set_fact: + flattened: "{{ result.json|ansible.utils.to_paths }}" + + # TASK [Flatten the complex object] ******************** + # ok: [nxos101] => changed=false + # ansible_facts: + # flattened: + # interfaces.interface[0].config.enabled: 'true' + # interfaces.interface[0].config.mtu: '1500' + # interfaces.interface[0].config.name: eth1/71 + # interfaces.interface[0].config.type: ethernetCsmacd + # interfaces.interface[0].ethernet.config['auto-negotiate']: 'true' + # interfaces.interface[0].ethernet.state.counters['in-crc-errors']: '0' + # interfaces.interface[0].ethernet.state.counters['in-fragment-frames']: '0' + # interfaces.interface[0].ethernet.state.counters['in-jabber-frames']: '0' + + + +Return Values +------------- +Common return values are documented `here `_, the following are the fields unique to this lookup: + +.. raw:: html + + + + + + + + + + + + +
KeyReturnedDescription
+
+ _raw + +
+ - +
+
+
A dictionary of key value pairs
+
The key is the path
+
The value is the value
+
+
+

+ + +Status +------ + + +Authors +~~~~~~~ + +- Bradley Thornton (@cidrblock) + + +.. hint:: + Configuration entries for each entry type have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. diff --git a/galaxy.yml b/galaxy.yml index 8f4180d..24a96ad 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,23 +1,13 @@ -# See https://docs.ansible.com/ansible/latest/dev_guide/collections_galaxy_meta.html - -namespace: community -name: FIXME -version: 0.1.0 -readme: README.md +--- authors: - - YOUR NAME (github.com/YOURGITHUB) -description: null -license_file: COPYING -tags: -# tags so people can search for collections https://galaxy.ansible.com/search -# tags are all lower-case, no spaces, no dashes. - - example1 - - example2 -repository: https://github.com/ansible-collections/community.REPO_NAME -#documentation: https://github.com/ansible-collection-migration/community.REPO_NAME/tree/main/docs -homepage: https://github.com/ansible-collections/community.REPO_NAME -issues: https://github.com/ansible-collections/community.REPO_NAME/issues -build_ignore: -# https://docs.ansible.com/ansible/devel/dev_guide/developing_collections.html#ignoring-files-and-folders - - .gitignore - - changelogs/.plugin-cache.yaml + - Ansible Community +license_file: LICENSE +name: utils +namespace: ansible +description: Ansible Collection with utilities to ease the management, manipulation, and validation of data within a playbook +readme: README.md +repository: https://github.com/ansible-collections/ansible.utils +tags: [networking, security, cloud, utilities, data, validation] +# NOTE(pabelanger): We create an empty version key to keep ansible-galaxy +# happy. We dynamically inject version info based on git information. +version: null diff --git a/meta/runtime.yml b/meta/runtime.yml index 2ee3c9f..28d1d3a 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,2 +1,2 @@ --- -requires_ansible: '>=2.9.10' +requires_ansible: '>=2.9.10,<2.11' diff --git a/plugins/filter/paths.py b/plugins/filter/paths.py index fea97ff..03104e3 100644 --- a/plugins/filter/paths.py +++ b/plugins/filter/paths.py @@ -17,24 +17,30 @@ from ansible.module_utils.common._collections_compat import ( MutableMapping, ) -from ansible_collections.ansible.utils.plugins.module_utils.generate_paths import ( - generate_paths, +from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( + to_paths, + get_path, ) from jinja2.filters import environmentfilter -def to_paths(obj, prepend=None): - return generate_paths(obj, prepend) +def _to_paths(*args, **kwargs): + """ Convert complex objects to paths. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst) + """ + return to_paths(*args, **kwargs) @environmentfilter -def get_path(environment, vars, path): - string_to_variable = "{{ %s }}" % path - return environment.from_string(string_to_variable).render(**vars) +def _get_path(*args, **kwargs): + """ Get value using path. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.get_path_lookup.rst) + """ + kwargs["environment"] = args[0] + args = args[1:] + return get_path(*args, **kwargs) class FilterModule(object): - """ Network filter """ + """ path filters """ def filters(self): - return {"to_paths": to_paths, "get_path": get_path} + return {"to_paths": _to_paths, "get_path": _get_path} diff --git a/plugins/lookup/get_path.py b/plugins/lookup/get_path.py new file mode 100644 index 0000000..2d46d0b --- /dev/null +++ b/plugins/lookup/get_path.py @@ -0,0 +1,174 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Red Hat +# GNU General Public License v3.0+ +# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + + +""" +The get_path lookup plugin +""" +from __future__ import absolute_import, division, print_function + +__metaclass__ = type + + +DOCUMENTATION = """ + lookup: get_path + author: Bradley Thornton (@cidrblock) + version_added: "1.0" + short_description: Retrieve the value in a variable using a path + description: + - Use a C(path) to retreive a nested value from a C(var) + - C(get_path) is also available as a C(filter_plugin) for convenience + options: + _terms: + description: The values below provided in the order C(var), C(path), C(wantlist=). + required: True + var: + description: The variable from which the value should be extraced + type: raw + required: True + path: + description: > + The C(path) in the C(var) to retrieve the value of. + The C(path) needs to a be a valid jinja path + type: str + required: True + wantlist: + description: > + If set to C(True), the return value will always be a list + This can also be accomplished using C(query) or C(q) instead of C(lookup) + U(https://docs.ansible.com/ansible/latest/plugins/lookup.html) + type: bool + + notes: +""" + +EXAMPLES = r""" +- ansible.builtin.set_fact: + a: + b: + c: + d: + - 0 + - 1 + e: + - True + - False + +- name: Retrieve a value deep inside a using a path + ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.get_path', a, path) }}" + as_filter: "{{ a|ansible.utils.get_path(path) }}" + vars: + path: b.c.d[0] + +# TASK [ansible.builtin.set_fact] ************************************* +# ok: [nxos101] => changed=false +# ansible_facts: +# as_filter: '0' +# as_lookup: '0' + + +#### Working with hostvars + +- name: Retrieve a value deep inside all of the host's vars + ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.get_path', look_in, look_for) }}" + as_filter: "{{ look_in|ansible.utils.get_path(look_for) }}" + vars: + look_in: "{{ hostvars[inventory_hostname] }}" + look_for: a.b.c.d[0] + +# TASK [Retrieve a value deep inside all of the host's vars] ********** +# ok: [nxos101] => changed=false +# ansible_facts: +# as_filter: '0' +# as_lookup: '0' + + +#### Used alongside ansible.utils.to_paths + +- name: Get the paths for the object + ansible.builtin.set_fact: + paths: "{{ a|ansible.utils.to_paths(prepend='a') }}" + +- name: Retrieve the value of each path from vars + ansible.builtin.debug: + msg: "The value of path {{ path }} in vars is {{ value }}" + loop: "{{ paths.keys()|list }}" + loop_control: + label: "{{ item }}" + vars: + path: "{{ item }}" + value: "{{ vars|ansible.utils.get_path(item) }}" + +# TASK [Get the paths for the object] ********************************* +# ok: [nxos101] => changed=false +# ansible_facts: +# paths: +# a.b.c.d[0]: 0 +# a.b.c.d[1]: 1 +# a.b.c.e[0]: true +# a.b.c.e[1]: false + +# TASK [Retrieve the value of each path from vars] ******************** +# ok: [nxos101] => (item=a.b.c.d[0]) => +# msg: The value of path a.b.c.d[0] in vars is 0 +# ok: [nxos101] => (item=a.b.c.d[1]) => +# msg: The value of path a.b.c.d[1] in vars is 1 +# ok: [nxos101] => (item=a.b.c.e[0]) => +# msg: The value of path a.b.c.e[0] in vars is True +# ok: [nxos101] => (item=a.b.c.e[1]) => +# msg: The value of path a.b.c.e[1] in vars is False + + +#### Working with complex structures + +- name: Retrieve the current interface config + cisco.nxos.nxos_interfaces: + state: gathered + register: interfaces + +- name: Get the description of several interfaces + ansible.builtin.debug: + msg: "{{ rekeyed|ansible.utils.get_path(item) }}" + vars: + rekeyed: + by_name: "{{ interfaces.gathered|ansible.builtin.rekey_on_member('name') }}" + loop: + - by_name['Ethernet1/1'].description + - by_name['Ethernet1/2'].description + +# TASK [Get the description of several interfaces] ******************** +# ok: [nxos101] => (item=by_name['Ethernet1/1'].description) => +# msg: Configured by Ansible +# ok: [nxos101] => (item=by_name['Ethernet1/2'].description) => +# msg: Configured by Ansible Network + +""" + +RETURN = """ + _raw: + description: + - One or more zero-based indicies of the matching list items + - See C(wantlist) if a list is always required +""" + +from ansible.plugins.lookup import LookupBase +from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( + get_path, +) + + +class LookupModule(LookupBase): + def run(self, terms, variables, **kwargs): + kwargs["environment"] = self._templar.environment + if isinstance(terms, dict): + terms.update(kwargs) + res = get_path(**terms) + else: + res = get_path(*terms, **kwargs) + if not isinstance(res, list): + return [res] + return res diff --git a/plugins/lookup/to_paths.py b/plugins/lookup/to_paths.py new file mode 100644 index 0000000..be8d2c3 --- /dev/null +++ b/plugins/lookup/to_paths.py @@ -0,0 +1,157 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Red Hat +# GNU General Public License v3.0+ +# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + + +""" +The to_paths lookup plugin +""" +from __future__ import absolute_import, division, print_function + +__metaclass__ = type + + +DOCUMENTATION = """ + lookup: to_paths + author: Bradley Thornton (@cidrblock) + version_added: "1.0" + short_description: Flatten a complex object into a dictionary of paths and values + description: + - Flatten a complex object into a dictionary of paths and values. + - Paths are dot delimited whenever possible + - Brakets are used for list indicies and keys that contain special characters + - C(to_paths) is also available as a filter plugin + options: + _terms: + description: The values below provided in the order C(var), C(prepend=), C(wantlist=). + required: True + var: + description: The value of C(var) will be will be used. + type: raw + required: True + prepend: + description: Prepend each path entry. Useful to add the initial C(var) name. + type: str + required: False + wantlist: + description: > + If set to C(True), the return value will always be a list. + This can also be accomplished using C(query) or C(q) instead of C(lookup). + U(https://docs.ansible.com/ansible/latest/plugins/lookup.html) + type: bool + + notes: +""" + +EXAMPLES = r""" + +#### Simple examples + +- ansible.builtin.set_fact: + a: + b: + c: + d: + - 0 + - 1 + e: + - True + - False + +- ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.to_paths', a) }}" + as_filter: "{{ a|ansible.utils.to_paths }}" + +# TASK [set_fact] ***************************************************** +# task path: /home/brad/github/dotbracket/site.yaml:17 +# ok: [localhost] => changed=false +# ansible_facts: +# as_filter: +# b.c.d[0]: 0 +# b.c.d[1]: 1 +# b.c.e[0]: true +# b.c.e[1]: false +# as_lookup: +# b.c.d[0]: 0 +# b.c.d[1]: 1 +# b.c.e[0]: true +# b.c.e[1]: false + +- name: Use prepend to add the initial variable name + ansible.builtin.set_fact: + as_lookup: "{{ lookup('ansible.utils.to_paths', a, prepend=('a')) }}" + as_filter: "{{ a|ansible.utils.to_paths(prepend='a') }}" + +# TASK [Use prepend to add the initial variable name] ***************** +# ok: [nxos101] => changed=false +# ansible_facts: +# as_filter: +# a.b.c.d[0]: 0 +# a.b.c.d[1]: 1 +# a.b.c.e[0]: true +# a.b.c.e[1]: false +# as_lookup: +# a.b.c.d[0]: 0 +# a.b.c.d[1]: 1 +# a.b.c.e[0]: true +# a.b.c.e[1]: false + + +#### Using a complex object + +- name: Make an API call + uri: + url: "https://nxos101/restconf/data/openconfig-interfaces:interfaces" + headers: + accept: "application/yang.data+json" + url_password: password + url_username: admin + validate_certs: False + register: result + delegate_to: localhost + +- name: Flatten the complex object + set_fact: + flattened: "{{ result.json|ansible.utils.to_paths }}" + +# TASK [Flatten the complex object] ******************** +# ok: [nxos101] => changed=false +# ansible_facts: +# flattened: +# interfaces.interface[0].config.enabled: 'true' +# interfaces.interface[0].config.mtu: '1500' +# interfaces.interface[0].config.name: eth1/71 +# interfaces.interface[0].config.type: ethernetCsmacd +# interfaces.interface[0].ethernet.config['auto-negotiate']: 'true' +# interfaces.interface[0].ethernet.state.counters['in-crc-errors']: '0' +# interfaces.interface[0].ethernet.state.counters['in-fragment-frames']: '0' +# interfaces.interface[0].ethernet.state.counters['in-jabber-frames']: '0' + + +""" + +RETURN = """ + _raw: + description: + - A dictionary of key value pairs + - The key is the path + - The value is the value +""" + +from ansible.plugins.lookup import LookupBase +from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( + to_paths, +) + + +class LookupModule(LookupBase): + def run(self, terms, variables, **kwargs): + if isinstance(terms, dict): + terms.update(kwargs) + res = to_paths(**terms) + else: + res = to_paths(*terms, **kwargs) + if not isinstance(res, list): + return [res] + return res diff --git a/plugins/module_utils/generate_paths.py b/plugins/module_utils/path_utils.py similarity index 50% rename from plugins/module_utils/generate_paths.py rename to plugins/module_utils/path_utils.py index 1ffc538..e51bafe 100644 --- a/plugins/module_utils/generate_paths.py +++ b/plugins/module_utils/path_utils.py @@ -17,8 +17,40 @@ from ansible.module_utils.common._collections_compat import ( MutableMapping, ) +# Note, this file can only be used on the control node +# where ansible is installed +# limit imports to filter and lookup plugins +try: + from ansible.errors import AnsibleError +except ImportError: + pass + + +def get_path(var, path, environment, wantlist=False): + """ Get the value of a path within an object + + :param var: The var from which the value is retrieved + :type var: should be dict or list, but jinja can sort that out + :param path: The path to get + :type path: should be a string but jinja can sort that out + :param environment: The jinja Environment + :type environment: Environment + :return: The result of the jinja evaluation + :rtype: any + """ + string_to_variable = "{{ %s }}" % path + result = environment.from_string(string_to_variable).render(**var) + if wantlist: + return [result] + return result + + +def to_paths(var, prepend=False, wantlist=False): + if prepend: + if not isinstance(prepend, str): + raise AnsibleError("The value of 'prepend' must be a sting.") + var = {prepend: var} -def generate_paths(nested_json, prepend): out = {} def flatten(data, name=""): @@ -38,8 +70,7 @@ def generate_paths(nested_json, prepend): else: out[name] = data - if prepend: - flatten({prepend: nested_json}) - else: - flatten(nested_json) + flatten(var) + if wantlist: + return [out] return out diff --git a/tests/sanity/ignore-2.10.txt b/tests/sanity/ignore-2.10.txt new file mode 100644 index 0000000..71674f0 --- /dev/null +++ b/tests/sanity/ignore-2.10.txt @@ -0,0 +1 @@ +plugins/module_utils/path_utils.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node diff --git a/tests/sanity/ignore-2.9.txt b/tests/sanity/ignore-2.9.txt new file mode 100644 index 0000000..71674f0 --- /dev/null +++ b/tests/sanity/ignore-2.9.txt @@ -0,0 +1 @@ +plugins/module_utils/path_utils.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node From 187b776c3f28a48937db6461e0e89b420045d310 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 11:43:22 -0700 Subject: [PATCH 03/17] Add units --- plugins/module_utils/path_utils.py | 2 +- tests/unit/module_utils/fixtures/large.json | 55318 ++++++++++++++++++ tests/unit/module_utils/test_path_utils.py | 90 + 3 files changed, 55409 insertions(+), 1 deletion(-) create mode 100644 tests/unit/module_utils/fixtures/large.json create mode 100644 tests/unit/module_utils/test_path_utils.py diff --git a/plugins/module_utils/path_utils.py b/plugins/module_utils/path_utils.py index e51bafe..e600034 100644 --- a/plugins/module_utils/path_utils.py +++ b/plugins/module_utils/path_utils.py @@ -48,7 +48,7 @@ def get_path(var, path, environment, wantlist=False): def to_paths(var, prepend=False, wantlist=False): if prepend: if not isinstance(prepend, str): - raise AnsibleError("The value of 'prepend' must be a sting.") + raise AnsibleError("The value of 'prepend' must be a string.") var = {prepend: var} out = {} diff --git a/tests/unit/module_utils/fixtures/large.json b/tests/unit/module_utils/fixtures/large.json new file mode 100644 index 0000000..51b7509 --- /dev/null +++ b/tests/unit/module_utils/fixtures/large.json @@ -0,0 +1,55318 @@ +{ + "System": { + "acct-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled", + "sessionId": "0", + "sessionNum": "0", + "sourceId": "0" + }, + "actrl-items": { + "adminSt": "enabled", + "filt-items": { + "Flt-list": [ + { + "descr": "", + "ent-items": { + "Entry-list": [ + { + "applyToFrag": "false", + "arpOpc": "unspecified", + "descr": "", + "etherT": "unspecified", + "icmpv4T": "255", + "icmpv6T": "0", + "name": "implicit" + } + ] + }, + "id": "65534", + "name": "", + "ownerKey": "", + "ownerTag": "" + } + ] + }, + "inst-items": { + "accCtrl": "", + "adminSt": "enabled", + "ctrl": "", + "logClrIntvl": "2800", + "name": "" + }, + "name": "", + "operSt": "enabled" + }, + "adjacency-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled", + "ctrl": "", + "name": "" + }, + "operSt": "enabled" + }, + "arp-items": { + "adminSt": "enabled", + "inst-items": { + "adjLoggingLevel": "error", + "adminSt": "enabled", + "allowStaticArpOutsideSubnet": "disabled", + "arpUnnumSviSwReplication": "disabled", + "cacheLimit": "174080", + "cacheSyslogRate": "1", + "configErr": "", + "dom-items": { + "Dom-list": [ + { + "if-items": { + "If-list": [ + { + "adminSt": "enabled", + "configError": "", + "deleteAdjOnMacDelete": "disabled", + "duplicateIpDetectionForUnnumberedSvi": "disabled", + "gratuitousHsrpDup": "enabled", + "gratuitousRequest": "enabled", + "gratuitousUpdate": "enabled", + "id": "mgmt0", + "localProxyArp": "disabled", + "localProxyArpNoHwFlood": "disabled", + "proxyArp": "disabled", + "timeout": "1500" + } + ] + }, + "name": "management" + } + ] + }, + "evpn_timeout": "600", + "ipAdjRouteDistance": "250", + "loggingLevel": "error", + "offListTimeout": "180", + "rarpFabricFwding": "disabled", + "rarpFabricFwdingRate": "200", + "suppression_timeout": "0", + "timeout": "1500" + }, + "operSt": "enabled" + }, + "bd-items": { + "bd-items": { + "BD-list": [ + { + "BdOperName": "default", + "BdState": "active", + "adminSt": "active", + "bdDefDn": "", + "bridgeMode": "mac", + "controllerId": "", + "createTs": "1970-01-01T00:00:00.000+00:00", + "dbgVlanStats-items": { + "inBcastOctets": "0", + "inBcastPkts": "0", + "inL3UcastOctets": "0", + "inL3UcastPkts": "0", + "inMcastOctets": "0", + "inMcastPkts": "0", + "inUcastOctets": "0", + "inUcastPkts": "0", + "outUcastOctets": "0", + "outUcastPkts": "0" + }, + "fabEncap": "vlan-1", + "fwdCtrl": "mdst-flood", + "fwdMode": "bridge,route", + "hwId": "0", + "id": "1", + "member-items": { + "VlanMemberIf-list": [ + { + "id": "eth1/67", + "vlan": "1" + }, + { + "id": "eth1/27", + "vlan": "1" + }, + { + "id": "eth1/105", + "vlan": "1" + }, + { + "id": "eth1/58", + "vlan": "1" + }, + { + "id": "eth1/14", + "vlan": "1" + }, + { + "id": "eth1/12", + "vlan": "1" + }, + { + "id": "eth1/97", + "vlan": "1" + }, + { + "id": "eth1/77", + "vlan": "1" + }, + { + "id": "eth1/103", + "vlan": "1" + }, + { + "id": "eth1/59", + "vlan": "1" + }, + { + "id": "eth1/119", + "vlan": "1" + }, + { + "id": "eth1/110", + "vlan": "1" + }, + { + "id": "eth1/84", + "vlan": "1" + }, + { + "id": "eth1/122", + "vlan": "1" + }, + { + "id": "eth1/34", + "vlan": "1" + }, + { + "id": "eth1/1", + "vlan": "1" + }, + { + "id": "eth1/19", + "vlan": "1" + }, + { + "id": "eth1/57", + "vlan": "1" + }, + { + "id": "eth1/63", + "vlan": "1" + }, + { + "id": "eth1/46", + "vlan": "1" + }, + { + "id": "eth1/33", + "vlan": "1" + }, + { + "id": "eth1/115", + "vlan": "1" + }, + { + "id": "eth1/65", + "vlan": "1" + }, + { + "id": "eth1/16", + "vlan": "1" + }, + { + "id": "eth1/118", + "vlan": "1" + }, + { + "id": "eth1/85", + "vlan": "1" + }, + { + "id": "eth1/78", + "vlan": "1" + }, + { + "id": "eth1/56", + "vlan": "1" + }, + { + "id": "eth1/21", + "vlan": "1" + }, + { + "id": "eth1/89", + "vlan": "1" + }, + { + "id": "eth1/81", + "vlan": "1" + }, + { + "id": "eth1/23", + "vlan": "1" + }, + { + "id": "eth1/20", + "vlan": "1" + }, + { + "id": "eth1/15", + "vlan": "1" + }, + { + "id": "eth1/76", + "vlan": "1" + }, + { + "id": "eth1/86", + "vlan": "1" + }, + { + "id": "eth1/79", + "vlan": "1" + }, + { + "id": "eth1/70", + "vlan": "1" + }, + { + "id": "eth1/2", + "vlan": "1" + }, + { + "id": "eth1/48", + "vlan": "1" + }, + { + "id": "eth1/29", + "vlan": "1" + }, + { + "id": "eth1/123", + "vlan": "1" + }, + { + "id": "eth1/31", + "vlan": "1" + }, + { + "id": "eth1/117", + "vlan": "1" + }, + { + "id": "eth1/61", + "vlan": "1" + }, + { + "id": "eth1/83", + "vlan": "1" + }, + { + "id": "eth1/75", + "vlan": "1" + }, + { + "id": "eth1/68", + "vlan": "1" + }, + { + "id": "eth1/60", + "vlan": "1" + }, + { + "id": "eth1/127", + "vlan": "1" + }, + { + "id": "eth1/30", + "vlan": "1" + }, + { + "id": "eth1/107", + "vlan": "1" + }, + { + "id": "eth1/72", + "vlan": "1" + }, + { + "id": "eth1/10", + "vlan": "1" + }, + { + "id": "eth1/91", + "vlan": "1" + }, + { + "id": "eth1/126", + "vlan": "1" + }, + { + "id": "eth1/28", + "vlan": "1" + }, + { + "id": "eth1/54", + "vlan": "1" + }, + { + "id": "eth1/7", + "vlan": "1" + }, + { + "id": "eth1/52", + "vlan": "1" + }, + { + "id": "eth1/8", + "vlan": "1" + }, + { + "id": "eth1/101", + "vlan": "1" + }, + { + "id": "eth1/41", + "vlan": "1" + }, + { + "id": "eth1/18", + "vlan": "1" + }, + { + "id": "eth1/3", + "vlan": "1" + }, + { + "id": "eth1/47", + "vlan": "1" + }, + { + "id": "eth1/111", + "vlan": "1" + }, + { + "id": "eth1/55", + "vlan": "1" + }, + { + "id": "eth1/53", + "vlan": "1" + }, + { + "id": "eth1/80", + "vlan": "1" + }, + { + "id": "eth1/66", + "vlan": "1" + }, + { + "id": "eth1/116", + "vlan": "1" + }, + { + "id": "eth1/6", + "vlan": "1" + }, + { + "id": "eth1/5", + "vlan": "1" + }, + { + "id": "eth1/100", + "vlan": "1" + }, + { + "id": "eth1/87", + "vlan": "1" + }, + { + "id": "eth1/73", + "vlan": "1" + }, + { + "id": "eth1/45", + "vlan": "1" + }, + { + "id": "eth1/44", + "vlan": "1" + }, + { + "id": "eth1/42", + "vlan": "1" + }, + { + "id": "eth1/93", + "vlan": "1" + }, + { + "id": "eth1/128", + "vlan": "1" + }, + { + "id": "eth1/99", + "vlan": "1" + }, + { + "id": "eth1/62", + "vlan": "1" + }, + { + "id": "eth1/71", + "vlan": "1" + }, + { + "id": "eth1/49", + "vlan": "1" + }, + { + "id": "eth1/43", + "vlan": "1" + }, + { + "id": "eth1/96", + "vlan": "1" + }, + { + "id": "eth1/36", + "vlan": "1" + }, + { + "id": "eth1/98", + "vlan": "1" + }, + { + "id": "eth1/40", + "vlan": "1" + }, + { + "id": "eth1/125", + "vlan": "1" + }, + { + "id": "eth1/113", + "vlan": "1" + }, + { + "id": "eth1/88", + "vlan": "1" + }, + { + "id": "eth1/109", + "vlan": "1" + }, + { + "id": "eth1/39", + "vlan": "1" + }, + { + "id": "eth1/90", + "vlan": "1" + }, + { + "id": "eth1/120", + "vlan": "1" + }, + { + "id": "eth1/69", + "vlan": "1" + }, + { + "id": "eth1/124", + "vlan": "1" + }, + { + "id": "eth1/51", + "vlan": "1" + }, + { + "id": "eth1/26", + "vlan": "1" + }, + { + "id": "eth1/50", + "vlan": "1" + }, + { + "id": "eth1/112", + "vlan": "1" + }, + { + "id": "eth1/114", + "vlan": "1" + }, + { + "id": "eth1/106", + "vlan": "1" + }, + { + "id": "eth1/82", + "vlan": "1" + }, + { + "id": "eth1/74", + "vlan": "1" + }, + { + "id": "eth1/25", + "vlan": "1" + }, + { + "id": "eth1/108", + "vlan": "1" + }, + { + "id": "eth1/13", + "vlan": "1" + }, + { + "id": "eth1/38", + "vlan": "1" + }, + { + "id": "eth1/24", + "vlan": "1" + }, + { + "id": "eth1/17", + "vlan": "1" + }, + { + "id": "eth1/102", + "vlan": "1" + }, + { + "id": "eth1/37", + "vlan": "1" + }, + { + "id": "eth1/32", + "vlan": "1" + }, + { + "id": "eth1/4", + "vlan": "1" + }, + { + "id": "eth1/92", + "vlan": "1" + }, + { + "id": "eth1/104", + "vlan": "1" + }, + { + "id": "eth1/35", + "vlan": "1" + }, + { + "id": "eth1/9", + "vlan": "1" + }, + { + "id": "eth1/11", + "vlan": "1" + }, + { + "id": "eth1/22", + "vlan": "1" + }, + { + "id": "eth1/121", + "vlan": "1" + }, + { + "id": "eth1/95", + "vlan": "1" + }, + { + "id": "eth1/64", + "vlan": "1" + }, + { + "id": "eth1/94", + "vlan": "1" + } + ] + }, + "mode": "CE", + "operSt": "up", + "xConnect": "disable" + } + ] + }, + "descr": "", + "sysDefaultSVIAutostate": "enable" + }, + "boot-items": { + "image-items": { + "image_err": "", + "imageverification": "enable", + "sup1": "bootflash:/nxos.9.2.2.bin", + "sup1NextReload": "bootflash:/nxos.9.2.2.bin", + "sup2": "bootflash:/nxos.9.2.2.bin", + "sup2NextReload": "" + }, + "poap": "disable" + }, + "cdp-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled", + "devIdType": "none", + "holdIntvl": "180", + "if-items": { + "If-list": [ + { + "adminSt": "enabled", + "id": "eth1/27", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/115", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/15", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/100", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/105", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/16", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/46", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/56", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/25", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/122", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/81", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/88", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/65", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/76", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/127", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/41", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/30", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/128", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adj-items": { + "AdjEp-list": [ + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:38.277+00:00" + }, + "cap": "router,stp-dispute,switch", + "devId": "nxos102(90YD453YX23)", + "duplex": "full", + "index": "1", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.15" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.15" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "0", + "platId": "N9K-9000v", + "portId": "mgmt0", + "sysLoc": "snmplocation", + "sysName": "nxos102", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:38.278+00:00" + }, + "cap": "router,stp-dispute,switch", + "devId": "nxos103(9RGLRZ7TNFP)", + "duplex": "full", + "index": "2", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.16" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.16" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "0", + "platId": "N9K-9000v", + "portId": "mgmt0", + "sysLoc": "", + "sysName": "nxos103", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:38.280+00:00" + }, + "cap": "router,stp-dispute,switch", + "devId": "nxos104(9UXRQ9H3EXS)", + "duplex": "full", + "index": "3", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.17" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.17" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "0", + "platId": "N9K-9000v", + "portId": "mgmt0", + "sysLoc": "snmplocation", + "sysName": "nxos104", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + } + ] + }, + "adminSt": "enabled", + "id": "mgmt0", + "ifstats-items": { + "cksumErrRcvd": "0", + "failedSent": "0", + "malformRcvd": "0", + "unSupVerRcvd": "0", + "v1Sent": "0", + "v2Sent": "21415", + "validV1Rcvd": "0", + "validV2Rcvd": "64238" + }, + "nativeVlan": "0", + "operSt": "up", + "operStQual": "up" + }, + { + "adminSt": "enabled", + "id": "eth1/91", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/52", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/71", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/78", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/79", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/33", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/99", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/61", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/26", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/62", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/114", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/124", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/22", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/50", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/103", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/2", + "ifstats-items": { + "cksumErrRcvd": "0", + "failedSent": "0", + "malformRcvd": "0", + "unSupVerRcvd": "0", + "v1Sent": "0", + "v2Sent": "18325", + "validV1Rcvd": "0", + "validV2Rcvd": "62715" + }, + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/107", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/45", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/72", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/74", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/86", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/96", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/70", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/40", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/10", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/5", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/95", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/18", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/55", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/63", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/111", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/117", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/90", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/23", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/75", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/106", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/38", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/69", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/7", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/67", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/43", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/11", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/110", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/37", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/51", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/42", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/49", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/57", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/8", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/53", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/113", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/68", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/6", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/20", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/84", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/123", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/109", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/58", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/4", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/73", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/34", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/60", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/112", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/66", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/24", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/89", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/97", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/36", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/102", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/121", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/44", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/12", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/59", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/119", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/17", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/21", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/31", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/32", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/14", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/108", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/101", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/13", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/64", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/125", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/47", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/54", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/19", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/87", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/77", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adj-items": { + "AdjEp-list": [ + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:18.555+00:00" + }, + "cap": "igmp-filter,router,stp-dispute,switch", + "devId": "nxos102(90YD453YX23)", + "duplex": "full", + "index": "5", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.15" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.15" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "1", + "platId": "N9K-9000v", + "portId": "Ethernet1/2", + "sysLoc": "snmplocation", + "sysName": "nxos102", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:18.571+00:00" + }, + "cap": "igmp-filter,router,stp-dispute,switch", + "devId": "nxos103(9RGLRZ7TNFP)", + "duplex": "full", + "index": "6", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.16" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.16" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "1", + "platId": "N9K-9000v", + "portId": "Ethernet1/2", + "sysLoc": "", + "sysName": "nxos103", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:18.459+00:00" + }, + "cap": "igmp-filter,router,stp-dispute,switch", + "devId": "nxos104(9UXRQ9H3EXS)", + "duplex": "full", + "index": "1", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.17" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.17" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "1", + "platId": "N9K-9000v", + "portId": "Ethernet1/1", + "sysLoc": "snmplocation", + "sysName": "nxos104", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:18.463+00:00" + }, + "cap": "igmp-filter,router,stp-dispute,switch", + "devId": "nxos103(9RGLRZ7TNFP)", + "duplex": "full", + "index": "2", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.16" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.16" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "1", + "platId": "N9K-9000v", + "portId": "Ethernet1/1", + "sysLoc": "", + "sysName": "nxos103", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:18.540+00:00" + }, + "cap": "igmp-filter,router,stp-dispute,switch", + "devId": "nxos104(9UXRQ9H3EXS)", + "duplex": "full", + "index": "4", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.17" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.17" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "1", + "platId": "N9K-9000v", + "portId": "Ethernet1/2", + "sysLoc": "snmplocation", + "sysName": "nxos104", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + }, + { + "adjstats-items": { + "adjExpTs": "2020-10-09T18:06:18.461+00:00" + }, + "cap": "igmp-filter,router,stp-dispute,switch", + "devId": "nxos102(90YD453YX23)", + "duplex": "full", + "index": "3", + "intf-items": { + "IntfAddr-list": [ + { + "addr": "192.168.101.15" + } + ] + }, + "mgmt-items": { + "MgmtAddr-list": [ + { + "addr": "192.168.101.15" + } + ] + }, + "mtu": "1500", + "name": "", + "nativeVlan": "1", + "platId": "N9K-9000v", + "portId": "Ethernet1/1", + "sysLoc": "snmplocation", + "sysName": "nxos102", + "ver": "Cisco Nexus Operating System (NX-OS) Software, Version 9.2(2)" + } + ] + }, + "adminSt": "enabled", + "id": "eth1/1", + "ifstats-items": { + "cksumErrRcvd": "0", + "failedSent": "0", + "malformRcvd": "0", + "unSupVerRcvd": "0", + "v1Sent": "0", + "v2Sent": "21414", + "validV1Rcvd": "0", + "validV2Rcvd": "15714" + }, + "nativeVlan": "1", + "operSt": "up", + "operStQual": "up" + }, + { + "adminSt": "enabled", + "id": "eth1/126", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/104", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/3", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/98", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/82", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/29", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/28", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/80", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/116", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/9", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/35", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/118", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/120", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/93", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/85", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/94", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/39", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/48", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/83", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + }, + { + "adminSt": "enabled", + "id": "eth1/92", + "nativeVlan": "1", + "operSt": "down", + "operStQual": "if-down" + } + ] + }, + "operErr": "", + "sysName": "", + "txFreq": "60", + "ver": "v2" + }, + "name": "", + "operSt": "enabled" + }, + "cfs-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled", + "distribute": "enabled", + "ethDist": "disabled", + "ipDistMode": "none", + "operErr": "" + }, + "operSt": "enabled" + }, + "ch-items": { + "descr": "Nexus9000 9000v Chassis", + "id": "1", + "lcslot-items": { + "LCSlot-list": [ + { + "descr": "Linecard slot", + "id": "1", + "lc-items": { + "breakoutFactor": "1", + "descr": "Nexus 9000v Ethernet Module", + "hwVer": "0.0", + "id": "1", + "leafport-items": { + "LeafP-list": [ + { + "descr": "Leaf Port", + "id": "72", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "49", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "44", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "113", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "80", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "30", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "73", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "117", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "76", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "92", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "4", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "51", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "16", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "52", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "31", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "60", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "68", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "104", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "106", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "125", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "45", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "126", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "100", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "29", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "96", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "61", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "82", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "114", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "25", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "128", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "86", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "58", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "102", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "66", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "110", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "56", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "115", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "38", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "35", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "27", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "11", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "98", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "43", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "54", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "46", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "65", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "41", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "119", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "109", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "18", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "17", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "14", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "9", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "99", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "84", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "71", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "81", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "127", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "34", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "93", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "32", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "42", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "108", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "70", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "36", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "22", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "85", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "10", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "3", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "50", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "19", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "15", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "118", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "59", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "26", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "88", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "89", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "78", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "2", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "37", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "20", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "33", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "55", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "63", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "123", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "90", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "77", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "122", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "21", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "13", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "83", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "101", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "87", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "111", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "124", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "53", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "24", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "12", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "69", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "40", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "94", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "120", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "79", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "5", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "91", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "112", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "28", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "8", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "116", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "6", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "103", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "64", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "1", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "74", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "23", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "97", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "62", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "67", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "121", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "105", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "48", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "75", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "39", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "57", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "107", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "47", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "7", + "speed": "0", + "type": "leaf" + }, + { + "descr": "Leaf Port", + "id": "95", + "speed": "0", + "type": "leaf" + } + ] + }, + "macB": "00-00-00-00-00-00", + "macE": "00-00-00-00-00-00", + "mfgTm": "2006-12-25T00:00:00.000+00:00", + "model": "N9K-9000v", + "numP": "128", + "operSt": "online", + "partNumber": "73-99999-01", + "powerActualDraw": "0", + "powerAllocated": "0", + "pwrSt": "on", + "rev": "", + "ser": "970MUM0NTLV", + "splc-items": { + "acc": "read-only", + "cap": "512", + "descr": "Linecard Sprom", + "id": "1", + "numBlk": "768", + "operSt": "ok", + "rev": "", + "ser": "970MUM0NTLV", + "spcmn-items": { + "cksum": "2880", + "clei": "", + "count": "3", + "engBits": "0", + "hwVer": "0.0", + "len": "160", + "major": "0", + "mfgBits": "0", + "mfgDev": "", + "minor": "0", + "oem": "", + "pRev": "", + "pdNum": "N9K-9000v", + "prtNum": "73-99999-01", + "pwrCon": "-501", + "rmaFl": "0-0-0-0", + "serNum": "970MUM0NTLV", + "sig": "43947", + "size": "0", + "vdrId": "V02", + "ver": "3" + }, + "splcblk-items": { + "ambT": "0", + "cksum": "1352", + "coolRq": "0", + "crdIdx": "21099", + "eobcN": "0", + "epldN": "0", + "fbits": "0", + "hwCBits": "0", + "len": "103", + "macB": "52-54-00-5a-f8-b5", + "macL": "136", + "maxCPwr": "0", + "sensor1": "0,0", + "sensor2": "0,0", + "sensor3": "0,0", + "sensor4": "0,0", + "sensor5": "0,0", + "sensor6": "0,0", + "sensor7": "0,0", + "sensor8": "0,0", + "sig": "24579", + "sppd-items": { + "numPts": "128", + "prtTy": "2" + }, + "ver": "2" + }, + "spsensorblk-items": { + "cksum": "176", + "len": "71", + "sensor10": "0,0", + "sensor11": "0,0", + "sensor12": "0,0", + "sensor13": "0,0", + "sensor14": "0,0", + "sensor15": "0,0", + "sensor16": "0,0", + "sensor17": "0,0", + "sensor18": "0,0", + "sensor19": "0,0", + "sensor20": "0,0", + "sensor21": "0,0", + "sensor22": "0,0", + "sensor23": "0,0", + "sensor24": "0,0", + "sensor25": "0,0", + "sensor26": "0,0", + "sensor27": "0,0", + "sensor28": "0,0", + "sensor29": "0,0", + "sensor30": "0,0", + "sensor31": "0,0", + "sensor32": "0,0", + "sensor33": "0,0", + "sensor34": "0,0", + "sensor35": "0,0", + "sensor36": "0,0", + "sensor37": "0,0", + "sensor38": "0,0", + "sensor39": "0,0", + "sensor40": "0,0", + "sensor9": "0,0", + "sig": "24584", + "ver": "1" + }, + "type": "unk", + "vendor": "" + }, + "swCId": "50", + "swVer": "9.2(2)", + "type": "linecard", + "upTs": "2020-09-24T21:10:22.846+00:00", + "vdrId": "V02", + "vendor": "Cisco Systems, Inc." + }, + "loc": "front", + "operSt": "inserted", + "physId": "1", + "poweroff": "no", + "purgeCfg": "false", + "type": "lcslot" + } + ] + }, + "mfgTm": "2006-12-25T00:00:00.000+00:00", + "model": "", + "operSt": "online", + "operStQual": "Chassis came online", + "rev": "", + "role": "unsupported", + "ser": "970MUM0NTLV", + "spbp-items": { + "acc": "read-only", + "cap": "0", + "descr": "TOR", + "id": "1", + "model": "TOR", + "numBlk": "3", + "operSt": "ok", + "rev": "", + "ser": "970MUM0NTLV", + "spbpblk-items": { + "cksum": "952", + "fbits": "0", + "hwCBits": "0", + "len": "39", + "macB": "52-54-00-5a-f8-b5", + "macL": "128", + "maxCPwr": "0", + "oemEprise": "0", + "oemMIB": "0", + "sig": "24577", + "stackMIB": "0", + "ver": "3" + }, + "spcmn-items": { + "cksum": "2880", + "clei": "", + "count": "3", + "engBits": "0", + "hwVer": "0.0", + "len": "160", + "major": "0", + "mfgBits": "0", + "mfgDev": "", + "minor": "0", + "oem": "", + "pRev": "", + "pdNum": "N9K-9000v", + "prtNum": "73-99999-01", + "pwrCon": "-501", + "rmaFl": "0-0-0-0", + "serNum": "970MUM0NTLV", + "sig": "43947", + "size": "0", + "vdrId": "V02", + "ver": "3" + }, + "type": "7", + "vendor": "" + }, + "supslot-items": { + "SupCSlot-list": [ + { + "descr": "Sup slot", + "id": "1", + "loc": "front", + "operSt": "inserted", + "physId": "1", + "poweroff": "no", + "sup-items": { + "cpu-items": { + "CPU-list": [ + { + "arch": "x86_64", + "cores": "4", + "coresEn": "4", + "descr": " QEMU Virtual CPU version 2.5+", + "id": "1", + "mfgTm": "not-applicable", + "model": " QEMU Virtual CPU version 2.5+", + "rev": " 13", + "ser": "n/a", + "sock": "unspecified", + "speed": "2699.99", + "thrds": "1", + "vendor": " GenuineIntel" + } + ] + }, + "descr": "Nexus 9000v Ethernet Module", + "dimm-items": { + "Dimm-list": [ + { + "acc": "read-write", + "cap": "7846", + "descr": "RAM", + "id": "1", + "mfgTm": "2020-09-24T21:09:52.729+00:00", + "model": "n/a", + "operSt": "ok", + "rev": "n/a", + "ser": "n/a", + "type": "dimm", + "vendor": "n/a" + } + ] + }, + "flash-items": { + "acc": "read-write", + "cap": "8192", + "descr": "flash", + "id": "1", + "mfgTm": "2020-09-24T21:09:52.729+00:00", + "model": "n/a", + "operSt": "ok", + "rev": "n/a", + "ser": "n/a", + "type": "flash", + "vendor": "n/a" + }, + "hwVer": "0.0", + "id": "1", + "macB": "52-54-00-5a-f8-b5", + "macE": "52-54-00-5a-f9-3c", + "mfgTm": "2006-12-25T00:00:00.000+00:00", + "mgmt-items": { + "MgmtP-list": [ + { + "descr": "", + "id": "1", + "type": "mgmt" + } + ] + }, + "model": "N9K-9000v", + "numP": "128", + "operSt": "online", + "partNumber": "73-99999-01", + "powerActualDraw": "0", + "powerAllocated": "0", + "pwrSt": "on", + "rdSt": "active", + "rev": "", + "ser": "970MUM0NTLV", + "spsup-items": { + "acc": "read-only", + "cap": "512", + "descr": "Sup SPROM", + "id": "1", + "model": "N9K-9000v", + "numBlk": "768", + "operSt": "ok", + "rev": "", + "ser": "970MUM0NTLV", + "spcmn-items": { + "cksum": "2880", + "clei": "", + "count": "3", + "engBits": "0", + "hwVer": "0.0", + "len": "160", + "major": "0", + "mfgBits": "0", + "mfgDev": "", + "minor": "0", + "oem": "", + "pRev": "", + "pdNum": "N9K-9000v", + "prtNum": "73-99999-01", + "pwrCon": "-501", + "rmaFl": "0-0-0-0", + "serNum": "970MUM0NTLV", + "sig": "43947", + "size": "0", + "vdrId": "V02", + "ver": "3" + }, + "spsensorblk-items": { + "cksum": "176", + "len": "71", + "sensor10": "0,0", + "sensor11": "0,0", + "sensor12": "0,0", + "sensor13": "0,0", + "sensor14": "0,0", + "sensor15": "0,0", + "sensor16": "0,0", + "sensor17": "0,0", + "sensor18": "0,0", + "sensor19": "0,0", + "sensor20": "0,0", + "sensor21": "0,0", + "sensor22": "0,0", + "sensor23": "0,0", + "sensor24": "0,0", + "sensor25": "0,0", + "sensor26": "0,0", + "sensor27": "0,0", + "sensor28": "0,0", + "sensor29": "0,0", + "sensor30": "0,0", + "sensor31": "0,0", + "sensor32": "0,0", + "sensor33": "0,0", + "sensor34": "0,0", + "sensor35": "0,0", + "sensor36": "0,0", + "sensor37": "0,0", + "sensor38": "0,0", + "sensor39": "0,0", + "sensor40": "0,0", + "sensor9": "0,0", + "sig": "24584", + "ver": "1" + }, + "spsupblk-items": { + "ambT": "0", + "cksum": "1343", + "coolRq": "0", + "crdIdx": "21099", + "eobcN": "0", + "epldN": "0", + "fbits": "0", + "hwCBits": "0", + "len": "103", + "macB": "52-54-00-5a-f8-b5", + "macL": "136", + "maxCPwr": "0", + "sensor1": "0,0", + "sensor2": "0,0", + "sensor3": "0,0", + "sensor4": "0,0", + "sensor5": "0,0", + "sensor6": "0,0", + "sensor7": "0,0", + "sensor8": "0,0", + "sig": "24578", + "sppd-items": { + "numPts": "128", + "prtTy": "2" + }, + "ver": "2" + }, + "type": "flash", + "vendor": "" + }, + "swCId": "50", + "swVer": "9.2(2)", + "type": "supervisor", + "upTs": "2020-09-24T21:09:52.725+00:00", + "vdrId": "V02", + "vendor": "Cisco Systems, Inc." + }, + "type": "supslot" + } + ] + }, + "vendor": "" + }, + "clock-items": { + "adminSt": "enabled", + "authSt": "disabled", + "format": "24hours", + "protocol": "ntp", + "vdcId": "1" + }, + "conng-items": { + "descr": "", + "name": "", + "path-items": { + "PathEp-list": [ + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/11]", + "id": "eth1/11", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/11']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/64]", + "id": "eth1/64", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/64']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/12]", + "id": "eth1/12", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/12']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/53]", + "id": "eth1/53", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/53']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/59]", + "id": "eth1/59", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/59']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/93]", + "id": "eth1/93", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/93']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/46]", + "id": "eth1/46", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/46']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/24]", + "id": "eth1/24", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/24']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/120]", + "id": "eth1/120", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/120']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/66]", + "id": "eth1/66", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/66']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/122]", + "id": "eth1/122", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/122']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/45]", + "id": "eth1/45", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/45']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/123]", + "id": "eth1/123", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/123']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/73]", + "id": "eth1/73", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/73']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/128]", + "id": "eth1/128", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/128']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/32]", + "id": "eth1/32", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/32']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/126]", + "id": "eth1/126", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/126']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/95]", + "id": "eth1/95", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/95']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/81]", + "id": "eth1/81", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/81']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/7]", + "id": "eth1/7", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/7']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/23]", + "id": "eth1/23", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/23']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/76]", + "id": "eth1/76", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/76']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/71]", + "id": "eth1/71", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/71']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/55]", + "id": "eth1/55", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/55']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/9]", + "id": "eth1/9", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/9']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/121]", + "id": "eth1/121", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/121']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/88]", + "id": "eth1/88", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/88']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/102]", + "id": "eth1/102", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/102']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/107]", + "id": "eth1/107", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/107']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/108]", + "id": "eth1/108", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/108']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/17]", + "id": "eth1/17", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/17']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/5]", + "id": "eth1/5", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/5']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/48]", + "id": "eth1/48", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/48']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/61]", + "id": "eth1/61", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/61']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/72]", + "id": "eth1/72", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/72']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/43]", + "id": "eth1/43", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/43']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/105]", + "id": "eth1/105", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/105']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/33]", + "id": "eth1/33", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/33']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/54]", + "id": "eth1/54", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/54']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/67]", + "id": "eth1/67", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/67']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/28]", + "id": "eth1/28", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/28']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/21]", + "id": "eth1/21", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/21']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/62]", + "id": "eth1/62", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/62']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/22]", + "id": "eth1/22", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/22']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/42]", + "id": "eth1/42", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/42']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/91]", + "id": "eth1/91", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/91']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/34]", + "id": "eth1/34", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/34']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/103]", + "id": "eth1/103", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/103']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/35]", + "id": "eth1/35", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/35']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/90]", + "id": "eth1/90", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/90']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/58]", + "id": "eth1/58", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/58']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/60]", + "id": "eth1/60", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/60']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/96]", + "id": "eth1/96", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/96']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/20]", + "id": "eth1/20", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/20']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/127]", + "id": "eth1/127", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/127']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/56]", + "id": "eth1/56", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/56']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/79]", + "id": "eth1/79", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/79']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/31]", + "id": "eth1/31", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/31']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/82]", + "id": "eth1/82", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/82']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/4]", + "id": "eth1/4", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/4']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/25]", + "id": "eth1/25", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/25']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/92]", + "id": "eth1/92", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/92']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/112]", + "id": "eth1/112", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/112']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/69]", + "id": "eth1/69", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/69']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/86]", + "id": "eth1/86", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/86']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/113]", + "id": "eth1/113", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/113']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/51]", + "id": "eth1/51", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/51']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/63]", + "id": "eth1/63", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/63']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/115]", + "id": "eth1/115", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/115']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/18]", + "id": "eth1/18", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/18']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/65]", + "id": "eth1/65", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/65']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/109]", + "id": "eth1/109", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/109']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/70]", + "id": "eth1/70", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/70']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/114]", + "id": "eth1/114", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/114']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/125]", + "id": "eth1/125", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/125']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/117]", + "id": "eth1/117", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/117']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/101]", + "id": "eth1/101", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/101']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/29]", + "id": "eth1/29", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/29']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/68]", + "id": "eth1/68", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/68']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/83]", + "id": "eth1/83", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/83']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/44]", + "id": "eth1/44", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/44']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/110]", + "id": "eth1/110", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/110']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/36]", + "id": "eth1/36", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/36']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/14]", + "id": "eth1/14", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/14']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/47]", + "id": "eth1/47", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/47']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/85]", + "id": "eth1/85", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/85']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/52]", + "id": "eth1/52", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/52']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/84]", + "id": "eth1/84", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/84']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/38]", + "id": "eth1/38", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/38']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/100]", + "id": "eth1/100", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/100']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/57]", + "id": "eth1/57", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/57']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/13]", + "id": "eth1/13", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/13']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/111]", + "id": "eth1/111", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/111']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/26]", + "id": "eth1/26", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/26']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/3]", + "id": "eth1/3", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/3']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/19]", + "id": "eth1/19", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/19']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/119]", + "id": "eth1/119", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/119']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/89]", + "id": "eth1/89", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/89']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/77]", + "id": "eth1/77", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/77']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/104]", + "id": "eth1/104", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/104']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/116]", + "id": "eth1/116", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/116']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/37]", + "id": "eth1/37", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/37']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/16]", + "id": "eth1/16", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/16']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/97]", + "id": "eth1/97", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/97']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/39]", + "id": "eth1/39", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/39']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/94]", + "id": "eth1/94", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/94']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/78]", + "id": "eth1/78", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/78']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/98]", + "id": "eth1/98", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/98']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/40]", + "id": "eth1/40", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/40']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/124]", + "id": "eth1/124", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/124']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/41]", + "id": "eth1/41", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/41']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/49]", + "id": "eth1/49", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/49']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/27]", + "id": "eth1/27", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/27']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/80]", + "id": "eth1/80", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/80']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/15]", + "id": "eth1/15", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/15']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/106]", + "id": "eth1/106", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/106']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/6]", + "id": "eth1/6", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/6']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/30]", + "id": "eth1/30", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/30']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/50]", + "id": "eth1/50", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/50']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/118]", + "id": "eth1/118", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/118']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/10]", + "id": "eth1/10", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/10']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/74]", + "id": "eth1/74", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/74']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/1]", + "id": "eth1/1", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/1']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/87]", + "id": "eth1/87", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/87']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/2]", + "id": "eth1/2", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/2']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/8]", + "id": "eth1/8", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/8']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/99]", + "id": "eth1/99", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/99']" + } + }, + { + "fabricPathDn": "topology/pod-1/paths-0/pathep-[eth1/75]", + "id": "eth1/75", + "rspathToIf-items": { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/75']" + } + } + ] + } + }, + "currentTime": "1970-01-01T00:00:00.000+00:00", + "dhcp-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "diag-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled" + }, + "dns-items": { + "adminSt": "enabled", + "operSt": "enabled", + "prof-items": { + "Prof-list": [ + { + "descr": "", + "name": "default", + "ownerKey": "", + "ownerTag": "" + } + ] + } + }, + "epns-items": { + "epCount": "0" + }, + "eqptcapacity-items": { + "name": "" + }, + "ethpm-items": { + "adminSt": "enabled", + "inst-items": { + "adminLinkDownSyslogLevel": "5", + "adminLinkUpSyslogLevel": "5", + "adminSt": "enabled", + "allowUnsupportedSfp": "true", + "errdisrecover-items": { + "Event-items": { + "Event-list": [ + { + "adminSt": "enabled", + "detect": "true", + "event": "event-stp-inconsist-vpc-peerlink", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-link-flap", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-bpduguard", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-udld", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-storm-ctrl", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-set-port-state-failed", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-loopback", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-psec-violation", + "recover": "false" + }, + { + "adminSt": "enabled", + "detect": "true", + "event": "event-sec-violation", + "recover": "false" + } + ] + }, + "adminSt": "enabled", + "errDisRecovIntvl": "300" + }, + "ifSyslogInfo": "default", + "logEvent": "linkStatusDefault,linkStatusEnable,trunkStatusEnable", + "logLevel": "5", + "module-items": { + "Module-list": [ + { + "cfgdPorts": "", + "flags": "0", + "id": "1", + "isOffline": "false", + "lcNodeAddress": "257", + "moduleType": "sup", + "numPortTypes": "32", + "portCfgSap": "902", + "runtimeNumPorts": "0", + "runtimePorts": "", + "swCardId": "50" + }, + { + "cfgdPorts": "0-127", + "flags": "0", + "id": "2", + "isOffline": "false", + "lcNodeAddress": "258", + "moduleType": "lc", + "numPortTypes": "32", + "portCfgSap": "902", + "runtimeNumPorts": "129", + "runtimePorts": "", + "swCardId": "50" + } + ] + }, + "runtime-items": { + "bundleIfList": "unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified,unspecified", + "dceSwId": "0", + "dot1qRefCount": "0", + "eeeRefCount": "0", + "ethertypeRefCount": "0", + "fabpathCfgRefCount": "0", + "featurePongState": "0", + "issuPacerRefCount": "0", + "l3SatportRefCount": "0", + "lbIfs": "", + "lifLoopbackDone": "true", + "numBundles": "0", + "pvlanTrunkCfgRefCount": "0", + "slowdrainCongCoreConfChkState": "0", + "slowdrainCongEdgeConfChkState": "0", + "slowdrainPausConfChkState": "1", + "slowdrainPausEdgeConfChkState": "1", + "snmpIfTblLastChange": "18529:21:11:03.547", + "staticRMacCfgRefCount": "0" + }, + "systemDefaultAdminSt": "up", + "systemDefaultLayer": "Layer2", + "systemJumboMtu": "9216", + "vlan-items": { + "Vlan-list": [ + { + "flag": "0", + "id": "4045", + "numIf": "0", + "shutState": "up", + "state": "suspend" + }, + { + "flag": "0", + "id": "1", + "numIf": "1", + "shutState": "up", + "state": "suspend" + } + ] + }, + "vlanTagNative": "false" + }, + "name": "", + "operSt": "enabled" + }, + "fm-items": { + "bashshell-items": { + "adminSt": "enabled", + "maxInstance": "1", + "operSt": "enabled" + }, + "lldp-items": { + "adminSt": "enabled", + "maxInstance": "1", + "operSt": "enabled" + }, + "ntpd-items": { + "adminSt": "enabled", + "operSt": "disabled" + }, + "nxapi-items": { + "adminSt": "enabled", + "maxInstance": "1", + "operSt": "enabled" + }, + "scpserver-items": { + "adminSt": "enabled", + "operSt": "enabled" + } + }, + "fwstatuscont-items": { + "upgjob-items": { + "grpPriKey": "", + "internalLabel": "", + "upgjobfault-items": { + "faultDelegateKey": "" + } + } + }, + "gold-items": { + "description": "GOLD Diagnostic Content and Results", + "module-items": { + "Module-list": [ + { + "description": "Nexus 9000v Ethernet Module", + "diagBootLevel": "complete", + "diagStatus": "pass", + "id": "1", + "test-items": { + "Test-list": [ + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "7", + "lastExecutionTime": "Fri Oct 9 18:04:11 2020", + "lastFailTime": "n/a", + "lastPassTime": "Fri Oct 9 18:04:11 2020", + "name": "SystemMgmtBus", + "nextExecutionTime": "Fri Oct 9 18:04:41 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "42818", + "testAttributes": "**MN******A", + "testInterval": "00:00:30" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "9", + "lastExecutionTime": "n/a", + "lastFailTime": "n/a", + "lastPassTime": "n/a", + "name": "ACT2", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "untested", + "resultReason": "No failures yet", + "runCount": "0", + "testAttributes": "***N******A", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "15", + "lastExecutionTime": "n/a", + "lastFailTime": "n/a", + "lastPassTime": "n/a", + "name": "PortLoopback", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "untested", + "resultReason": "No failures yet", + "runCount": "0", + "testAttributes": "*P*N**XE***", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "10", + "lastExecutionTime": "Fri Oct 9 18:04:11 2020", + "lastFailTime": "n/a", + "lastPassTime": "Fri Oct 9 18:04:11 2020", + "name": "Console", + "nextExecutionTime": "Fri Oct 9 18:04:41 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "42818", + "testAttributes": "***N******A", + "testInterval": "00:00:30" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "3", + "lastExecutionTime": "Fri Oct 9 18:02:36 2020", + "lastFailTime": "n/a", + "lastPassTime": "Fri Oct 9 18:02:40 2020", + "name": "RealTimeClock", + "nextExecutionTime": "Fri Oct 9 18:07:40 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "4283", + "testAttributes": "***N******A", + "testInterval": "00:05:00" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "14", + "lastExecutionTime": "Thu Sep 24 21:10:25 2020", + "lastFailTime": "n/a", + "lastPassTime": "Thu Sep 24 21:10:25 2020", + "name": "Pcie", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "1", + "testAttributes": "C**N**X**T*", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "6", + "lastExecutionTime": "Fri Oct 9 17:42:36 2020", + "lastFailTime": "n/a", + "lastPassTime": "Fri Oct 9 17:42:36 2020", + "name": "BootFlash", + "nextExecutionTime": "Fri Oct 9 18:12:36 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "714", + "testAttributes": "***N******A", + "testInterval": "00:30:00" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "12", + "lastExecutionTime": "Fri Oct 9 17:12:36 2020", + "lastFailTime": "n/a", + "lastPassTime": "Fri Oct 9 17:12:36 2020", + "name": "Mce", + "nextExecutionTime": "Fri Oct 9 18:12:36 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "357", + "testAttributes": "***N******A", + "testInterval": "01:00:00" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "11", + "lastExecutionTime": "Fri Oct 9 18:04:11 2020", + "lastFailTime": "n/a", + "lastPassTime": "n/a", + "name": "FpgaRegTest", + "nextExecutionTime": "Fri Oct 9 18:04:41 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "untested", + "resultReason": "Request to Test FPGA not supported on this platform.", + "runCount": "42818", + "testAttributes": "***N******A", + "testInterval": "00:00:30" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "1", + "lastExecutionTime": "Thu Sep 24 21:09:52 2020", + "lastFailTime": "n/a", + "lastPassTime": "Thu Sep 24 21:09:52 2020", + "name": "USB", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "1", + "testAttributes": "C**N**X**T*", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "16", + "lastExecutionTime": "Fri Oct 9 18:03:36 2020", + "lastFailTime": "n/a", + "lastPassTime": "n/a", + "name": "RewriteEngineLoopback", + "nextExecutionTime": "Fri Oct 9 18:04:36 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "1-128", + "result": "untested", + "resultReason": "No failures yet", + "runCount": "21411", + "testAttributes": "*P*N***E**A", + "testInterval": "00:01:00" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "8", + "lastExecutionTime": "Thu Sep 24 21:09:52 2020", + "lastFailTime": "n/a", + "lastPassTime": "Thu Sep 24 21:09:52 2020", + "name": "OBFL", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "1", + "testAttributes": "C**N**X**T*", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "2", + "lastExecutionTime": "Fri Oct 9 18:02:36 2020", + "lastFailTime": "n/a", + "lastPassTime": "Fri Oct 9 18:02:36 2020", + "name": "NVRAM", + "nextExecutionTime": "Fri Oct 9 18:07:36 2020", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "4283", + "testAttributes": "***N******A", + "testInterval": "00:05:00" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "13", + "lastExecutionTime": "Thu Sep 24 21:10:25 2020", + "lastFailTime": "n/a", + "lastPassTime": "Thu Sep 24 21:10:25 2020", + "name": "AsicMemory", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "success", + "resultReason": "No failures yet", + "runCount": "1", + "testAttributes": "C**D**X**T*", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "4", + "lastExecutionTime": "n/a", + "lastFailTime": "n/a", + "lastPassTime": "n/a", + "name": "PrimaryBootROM", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "untested", + "resultReason": "No failures yet", + "runCount": "0", + "testAttributes": "***N******A", + "testInterval": "n/a" + }, + { + "consecutiveFailCount": "0", + "failCount": "0", + "firstFailTime": "n/a", + "id": "5", + "lastExecutionTime": "n/a", + "lastFailTime": "n/a", + "lastPassTime": "n/a", + "name": "SecondaryBootROM", + "nextExecutionTime": "n/a", + "portsAborted": "none", + "portsErrorDisabled": "none", + "portsFailing": "none", + "portsIncomplete": "none", + "portsPassing": "none", + "portsUntested": "none", + "result": "untested", + "resultReason": "No failures yet", + "runCount": "0", + "testAttributes": "***N******A", + "testInterval": "n/a" + } + ] + } + } + ] + } + }, + "icmpv4-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "icmpv6-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "igmpsnoop-items": { + "adminSt": "enabled", + "operErr": "", + "operSt": "enabled" + }, + "im-items": { + "adminSt": "enabled", + "inst-items": { + "BreakoutProfile": "disabled", + "adminSt": "enabled", + "cap-items": { + "Capability-list": [ + { + "autoInstCpbl": "true", + "id": "246", + "isInstalled": "true" + } + ] + }, + "ctrl": "", + "mode100M": "disabled", + "modeHwProfile": "undefined", + "module-items": { + "Module-list": [ + { + "id": "30", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "28", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "20", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "9", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "3", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "18", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "5", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "13", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "27", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "31", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "21", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "7", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "6", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "29", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "17", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "23", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "32", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "22", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "16", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "19", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "10", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "25", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "12", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "24", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "1", + "isPresent": "true", + "lcExceptionFlag": "0", + "lcInsertPldSz": "2224", + "lcNodeAddress": "257", + "moduleInitiEvalFlag": "0", + "moduleType": "sup", + "numPorts": "3", + "portCfgSap": "902", + "runtimeFlag": "0", + "swCardId": "50" + }, + { + "id": "15", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "4", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "8", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "14", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "11", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "2", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + }, + { + "id": "26", + "isPresent": "false", + "lcExceptionFlag": "0", + "lcInsertPldSz": "0", + "lcNodeAddress": "0", + "moduleInitiEvalFlag": "0", + "moduleType": "lc", + "numPorts": "0", + "portCfgSap": "0", + "runtimeFlag": "0", + "swCardId": "0" + } + ] + }, + "name": "", + "vdcSt": "created" + }, + "name": "", + "operSt": "enabled" + }, + "inst-items": { + "Inst-list": [ + { + "adminState": "admin-up", + "bgpRd": "0,0,0,0,0,0,0,0", + "bgpRdDisp": "0:0", + "createTs": "2020-09-24T21:09:32.763+00:00", + "ctrlrId": "0", + "dom-items": { + "Dom-list": [ + { + "name": "default", + "operRd": "unknown:unknown:0:0" + } + ] + }, + "gsdbCtx": "0", + "id": "1", + "lastChgdTs": "2020-09-24T21:09:33.116+00:00", + "name": "default", + "oldOperStQual": "invalid", + "operStQual": "invalid", + "operState": "up", + "oui": "0", + "pending": "false", + "prtclBmp": "0", + "resourceId": "0", + "scope": "1", + "secLbl": "0", + "v4TibId": "1", + "v4TibName": "base", + "v4TibOldOperStQual": "invalid", + "v4TibOperStQual": "invalid", + "v4TibOperState": "up", + "v4TibPending": "false", + "v4TibValid": "true", + "v6TibId": "2147483649", + "v6TibName": "base", + "v6TibOldOperStQual": "invalid", + "v6TibOperStQual": "invalid", + "v6TibOperState": "up", + "v6TibPending": "false", + "v6TibValid": "true", + "vpnId": "0" + }, + { + "adminState": "admin-up", + "bgpRd": "0,0,0,0,0,0,0,0", + "bgpRdDisp": "0:0", + "createTs": "2020-09-24T21:09:33.106+00:00", + "ctrlrId": "0", + "dom-items": { + "Dom-list": [ + { + "name": "management", + "operRd": "unknown:unknown:0:0" + } + ] + }, + "gsdbCtx": "0", + "id": "2", + "lastChgdTs": "2020-09-24T21:10:29.523+00:00", + "name": "management", + "oldOperStQual": "invalid", + "operStQual": "invalid", + "operState": "up", + "oui": "0", + "pending": "false", + "prtclBmp": "0", + "resourceId": "0", + "rsvrfMbr-items": { + "RsVrfMbr-list": [ + { + "tCl": "nwIf", + "tDn": "/System/mgmt-items/MgmtAddr-list[addr='mgmt0']" + } + ] + }, + "scope": "1", + "secLbl": "0", + "v4TibId": "2", + "v4TibName": "base", + "v4TibOldOperStQual": "invalid", + "v4TibOperStQual": "invalid", + "v4TibOperState": "up", + "v4TibPending": "false", + "v4TibValid": "true", + "v6TibId": "2147483650", + "v6TibName": "base", + "v6TibOldOperStQual": "invalid", + "v6TibOperStQual": "invalid", + "v6TibOperState": "up", + "v6TibPending": "false", + "v6TibValid": "true", + "vpnId": "0" + } + ] + }, + "install-items": { + "biosForce": "no", + "imgName": "", + "installType": "none", + "operation": "none", + "stage": "not-started", + "upgErr": "none", + "upgErrStr": "" + }, + "intf-items": { + "descr": "", + "phys-items": { + "PhysIf-list": [ + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "71" + }, + "id": "eth1/71", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:03", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219847", + "ifIndex": "436243456", + "intfT": "phy", + "iod": "75", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/71", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "124" + }, + "id": "eth1/124", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:38", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219900", + "ifIndex": "436270592", + "intfT": "phy", + "iod": "128", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/124", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "112" + }, + "id": "eth1/112", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:2C", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219888", + "ifIndex": "436264448", + "intfT": "phy", + "iod": "116", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/112", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "67" + }, + "id": "eth1/67", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:FF", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219843", + "ifIndex": "436241408", + "intfT": "phy", + "iod": "71", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/67", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "79" + }, + "id": "eth1/79", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:0B", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219855", + "ifIndex": "436247552", + "intfT": "phy", + "iod": "83", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/79", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "33" + }, + "id": "eth1/33", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:DD", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219809", + "ifIndex": "436224000", + "intfT": "phy", + "iod": "37", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/33", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "43" + }, + "id": "eth1/43", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E7", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219819", + "ifIndex": "436229120", + "intfT": "phy", + "iod": "47", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/43", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "4" + }, + "id": "eth1/4", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C0", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219780", + "ifIndex": "436209152", + "intfT": "phy", + "iod": "8", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/4", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "99" + }, + "id": "eth1/99", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:1F", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219875", + "ifIndex": "436257792", + "intfT": "phy", + "iod": "103", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/99", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "84" + }, + "id": "eth1/84", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:10", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219860", + "ifIndex": "436250112", + "intfT": "phy", + "iod": "88", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/84", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "109" + }, + "id": "eth1/109", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:29", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219884", + "ifIndex": "436262912", + "intfT": "phy", + "iod": "113", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/109", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "17" + }, + "id": "eth1/17", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:CD", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219793", + "ifIndex": "436215808", + "intfT": "phy", + "iod": "21", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/17", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "descr": "hello ifty, this works.", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "10" + }, + "id": "eth1/10", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C6", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219786", + "ifIndex": "436212224", + "intfT": "phy", + "iod": "14", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "hello ifty, this works.", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/10", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "108" + }, + "id": "eth1/108", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:28", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219884", + "ifIndex": "436262400", + "intfT": "phy", + "iod": "112", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/108", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "89" + }, + "id": "eth1/89", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:15", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219865", + "ifIndex": "436252672", + "intfT": "phy", + "iod": "93", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/89", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "73" + }, + "id": "eth1/73", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:05", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219849", + "ifIndex": "436244480", + "intfT": "phy", + "iod": "77", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/73", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "106" + }, + "id": "eth1/106", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:26", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219882", + "ifIndex": "436261376", + "intfT": "phy", + "iod": "110", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/106", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "32" + }, + "id": "eth1/32", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:DC", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219808", + "ifIndex": "436223488", + "intfT": "phy", + "iod": "36", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/32", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "22" + }, + "id": "eth1/22", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D2", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219798", + "ifIndex": "436218368", + "intfT": "phy", + "iod": "26", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/22", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "61" + }, + "id": "eth1/61", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F9", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219837", + "ifIndex": "436238336", + "intfT": "phy", + "iod": "65", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/61", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "30" + }, + "id": "eth1/30", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:DA", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219806", + "ifIndex": "436222464", + "intfT": "phy", + "iod": "34", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/30", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "116" + }, + "id": "eth1/116", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:30", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219892", + "ifIndex": "436266496", + "intfT": "phy", + "iod": "120", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/116", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "54" + }, + "id": "eth1/54", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F2", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219830", + "ifIndex": "436234752", + "intfT": "phy", + "iod": "58", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/54", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "119" + }, + "id": "eth1/119", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:33", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219895", + "ifIndex": "436268032", + "intfT": "phy", + "iod": "123", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/119", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "111" + }, + "id": "eth1/111", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:2B", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219887", + "ifIndex": "436263936", + "intfT": "phy", + "iod": "115", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/111", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "92" + }, + "id": "eth1/92", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:18", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219868", + "ifIndex": "436254208", + "intfT": "phy", + "iod": "96", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/92", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "78" + }, + "id": "eth1/78", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:0A", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219854", + "ifIndex": "436247040", + "intfT": "phy", + "iod": "82", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/78", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "50" + }, + "id": "eth1/50", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:EE", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219826", + "ifIndex": "436232704", + "intfT": "phy", + "iod": "54", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/50", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "115" + }, + "id": "eth1/115", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:2F", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219891", + "ifIndex": "436265984", + "intfT": "phy", + "iod": "119", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/115", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "72" + }, + "id": "eth1/72", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:04", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219848", + "ifIndex": "436243968", + "intfT": "phy", + "iod": "76", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/72", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "6" + }, + "id": "eth1/6", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C2", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219782", + "ifIndex": "436210176", + "intfT": "phy", + "iod": "10", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/6", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "38" + }, + "id": "eth1/38", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E2", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219814", + "ifIndex": "436226560", + "intfT": "phy", + "iod": "42", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/38", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "65" + }, + "id": "eth1/65", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:FD", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219841", + "ifIndex": "436240384", + "intfT": "phy", + "iod": "69", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/65", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "5" + }, + "id": "eth1/5", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C1", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219781", + "ifIndex": "436209664", + "intfT": "phy", + "iod": "9", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/5", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "97" + }, + "id": "eth1/97", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:1D", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219873", + "ifIndex": "436256768", + "intfT": "phy", + "iod": "101", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/97", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "36" + }, + "id": "eth1/36", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E0", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219812", + "ifIndex": "436225536", + "intfT": "phy", + "iod": "40", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/36", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "120" + }, + "id": "eth1/120", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:34", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219896", + "ifIndex": "436268544", + "intfT": "phy", + "iod": "124", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/120", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "100" + }, + "id": "eth1/100", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:20", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219876", + "ifIndex": "436258304", + "intfT": "phy", + "iod": "104", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/100", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "90" + }, + "id": "eth1/90", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:16", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219866", + "ifIndex": "436253184", + "intfT": "phy", + "iod": "94", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/90", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "81" + }, + "id": "eth1/81", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:0D", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219857", + "ifIndex": "436248576", + "intfT": "phy", + "iod": "85", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/81", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "31" + }, + "id": "eth1/31", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:DB", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219807", + "ifIndex": "436222976", + "intfT": "phy", + "iod": "35", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/31", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "28" + }, + "id": "eth1/28", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D8", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219804", + "ifIndex": "436221440", + "intfT": "phy", + "iod": "32", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/28", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "93" + }, + "id": "eth1/93", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:19", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219869", + "ifIndex": "436254720", + "intfT": "phy", + "iod": "97", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/93", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "down", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "descr": "Configured by Ansible Network", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "2" + }, + "id": "eth1/2", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "down", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:BE", + "bundleBupId": "2", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "admin_state", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219778", + "ifIndex": "436208128", + "intfT": "phy", + "iod": "6", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "2020-10-07T14:34:34.912+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "35", + "operDceMode": "edge", + "operDescr": "Configured by Ansible Network", + "operDuplex": "full", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "0", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "admin-down", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "1", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "1", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "admin_state", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/2", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "userCfgdFlags": "admin_state", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "66" + }, + "id": "eth1/66", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:FE", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219842", + "ifIndex": "436240896", + "intfT": "phy", + "iod": "70", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/66", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "105" + }, + "id": "eth1/105", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:25", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219881", + "ifIndex": "436260864", + "intfT": "phy", + "iod": "109", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/105", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "58" + }, + "id": "eth1/58", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F6", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219834", + "ifIndex": "436236800", + "intfT": "phy", + "iod": "62", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/58", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "88" + }, + "id": "eth1/88", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:14", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219864", + "ifIndex": "436252160", + "intfT": "phy", + "iod": "92", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/88", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "94" + }, + "id": "eth1/94", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:1A", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219870", + "ifIndex": "436255232", + "intfT": "phy", + "iod": "98", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/94", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "104" + }, + "id": "eth1/104", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:24", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219880", + "ifIndex": "436260352", + "intfT": "phy", + "iod": "108", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/104", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "87" + }, + "id": "eth1/87", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:13", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219863", + "ifIndex": "436251648", + "intfT": "phy", + "iod": "91", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/87", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "62" + }, + "id": "eth1/62", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:FA", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219838", + "ifIndex": "436238848", + "intfT": "phy", + "iod": "66", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/62", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "37" + }, + "id": "eth1/37", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E1", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219813", + "ifIndex": "436226048", + "intfT": "phy", + "iod": "41", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/37", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "77" + }, + "id": "eth1/77", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:09", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219853", + "ifIndex": "436246528", + "intfT": "phy", + "iod": "81", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/77", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "46" + }, + "id": "eth1/46", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:EA", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219822", + "ifIndex": "436230656", + "intfT": "phy", + "iod": "50", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/46", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "40" + }, + "id": "eth1/40", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E4", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219816", + "ifIndex": "436227584", + "intfT": "phy", + "iod": "44", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/40", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "101" + }, + "id": "eth1/101", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:21", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219877", + "ifIndex": "436258816", + "intfT": "phy", + "iod": "105", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/101", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "125" + }, + "id": "eth1/125", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:39", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219901", + "ifIndex": "436271104", + "intfT": "phy", + "iod": "129", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/125", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "123" + }, + "id": "eth1/123", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:37", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219899", + "ifIndex": "436270080", + "intfT": "phy", + "iod": "127", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/123", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "118" + }, + "id": "eth1/118", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:32", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219894", + "ifIndex": "436267520", + "intfT": "phy", + "iod": "122", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/118", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "7" + }, + "id": "eth1/7", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C3", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219783", + "ifIndex": "436210688", + "intfT": "phy", + "iod": "11", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/7", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "12" + }, + "id": "eth1/12", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C8", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219788", + "ifIndex": "436213248", + "intfT": "phy", + "iod": "16", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/12", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "60" + }, + "id": "eth1/60", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F8", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219836", + "ifIndex": "436237824", + "intfT": "phy", + "iod": "64", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/60", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "56" + }, + "id": "eth1/56", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F4", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219832", + "ifIndex": "436235776", + "intfT": "phy", + "iod": "60", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/56", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "63" + }, + "id": "eth1/63", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:FB", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219839", + "ifIndex": "436239360", + "intfT": "phy", + "iod": "67", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/63", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "110" + }, + "id": "eth1/110", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:2A", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219886", + "ifIndex": "436263424", + "intfT": "phy", + "iod": "114", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/110", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "14" + }, + "id": "eth1/14", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:CA", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219790", + "ifIndex": "436214272", + "intfT": "phy", + "iod": "18", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/14", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "23" + }, + "id": "eth1/23", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D3", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219799", + "ifIndex": "436218880", + "intfT": "phy", + "iod": "27", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/23", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "41" + }, + "id": "eth1/41", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E5", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219817", + "ifIndex": "436228096", + "intfT": "phy", + "iod": "45", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/41", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "19" + }, + "id": "eth1/19", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:CF", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219795", + "ifIndex": "436216832", + "intfT": "phy", + "iod": "23", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/19", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "103" + }, + "id": "eth1/103", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:23", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219879", + "ifIndex": "436259840", + "intfT": "phy", + "iod": "107", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/103", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "15" + }, + "id": "eth1/15", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:CB", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219791", + "ifIndex": "436214784", + "intfT": "phy", + "iod": "19", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/15", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "80" + }, + "id": "eth1/80", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:0C", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219856", + "ifIndex": "436248064", + "intfT": "phy", + "iod": "84", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/80", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "113" + }, + "id": "eth1/113", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:2D", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219889", + "ifIndex": "436264960", + "intfT": "phy", + "iod": "117", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/113", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "35" + }, + "id": "eth1/35", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:DF", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219811", + "ifIndex": "436225024", + "intfT": "phy", + "iod": "39", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/35", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "86" + }, + "id": "eth1/86", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:12", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219862", + "ifIndex": "436251136", + "intfT": "phy", + "iod": "90", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/86", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "96" + }, + "id": "eth1/96", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:1C", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219872", + "ifIndex": "436256256", + "intfT": "phy", + "iod": "100", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/96", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "70" + }, + "id": "eth1/70", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:02", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219846", + "ifIndex": "436242944", + "intfT": "phy", + "iod": "74", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/70", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "18" + }, + "id": "eth1/18", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:CE", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219794", + "ifIndex": "436216320", + "intfT": "phy", + "iod": "22", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/18", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "98" + }, + "id": "eth1/98", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:1E", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219874", + "ifIndex": "436257280", + "intfT": "phy", + "iod": "102", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/98", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "95" + }, + "id": "eth1/95", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:1B", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219871", + "ifIndex": "436255744", + "intfT": "phy", + "iod": "99", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/95", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "82" + }, + "id": "eth1/82", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:0E", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219858", + "ifIndex": "436249088", + "intfT": "phy", + "iod": "86", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/82", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "59" + }, + "id": "eth1/59", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F7", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219835", + "ifIndex": "436237312", + "intfT": "phy", + "iod": "63", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/59", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "13" + }, + "id": "eth1/13", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C9", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219789", + "ifIndex": "436213760", + "intfT": "phy", + "iod": "17", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/13", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "9" + }, + "id": "eth1/9", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C5", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219785", + "ifIndex": "436211712", + "intfT": "phy", + "iod": "13", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/9", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "27" + }, + "id": "eth1/27", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D7", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219803", + "ifIndex": "436220928", + "intfT": "phy", + "iod": "31", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/27", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "49" + }, + "id": "eth1/49", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:ED", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219825", + "ifIndex": "436232192", + "intfT": "phy", + "iod": "53", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/49", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "44" + }, + "id": "eth1/44", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E8", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219820", + "ifIndex": "436229632", + "intfT": "phy", + "iod": "48", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/44", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "16" + }, + "id": "eth1/16", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:CC", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219792", + "ifIndex": "436215296", + "intfT": "phy", + "iod": "20", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/16", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "76" + }, + "id": "eth1/76", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:08", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219852", + "ifIndex": "436246016", + "intfT": "phy", + "iod": "80", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/76", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "51" + }, + "id": "eth1/51", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:EF", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219827", + "ifIndex": "436233216", + "intfT": "phy", + "iod": "55", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/51", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "11" + }, + "id": "eth1/11", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C7", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219787", + "ifIndex": "436212736", + "intfT": "phy", + "iod": "15", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/11", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "0", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "39" + }, + "id": "eth1/39", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E3", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219815", + "ifIndex": "436227072", + "intfT": "phy", + "iod": "43", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/39", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "83" + }, + "id": "eth1/83", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:0F", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219859", + "ifIndex": "436249600", + "intfT": "phy", + "iod": "87", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/83", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "107" + }, + "id": "eth1/107", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:27", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219883", + "ifIndex": "436261888", + "intfT": "phy", + "iod": "111", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/107", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "57" + }, + "id": "eth1/57", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F5", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219833", + "ifIndex": "436236288", + "intfT": "phy", + "iod": "61", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/57", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "descr": "Configured by Brad", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "1" + }, + "id": "eth1/1", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:BD", + "bundleBupId": "2", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219777", + "ifIndex": "436207616", + "intfT": "phy", + "iod": "5", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "2020-09-24T21:11:05.406+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "3-4", + "operDceMode": "edge", + "operDescr": "Configured by Brad", + "operDuplex": "full", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "0", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "up", + "operStQual": "none", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "1", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "1", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/1", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "126" + }, + "id": "eth1/126", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:3A", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219902", + "ifIndex": "436271616", + "intfT": "phy", + "iod": "130", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/126", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "47" + }, + "id": "eth1/47", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:EB", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219823", + "ifIndex": "436231168", + "intfT": "phy", + "iod": "51", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/47", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "85" + }, + "id": "eth1/85", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:11", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219861", + "ifIndex": "436250624", + "intfT": "phy", + "iod": "89", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/85", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "45" + }, + "id": "eth1/45", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E9", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219821", + "ifIndex": "436230144", + "intfT": "phy", + "iod": "49", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/45", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "24" + }, + "id": "eth1/24", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D4", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219800", + "ifIndex": "436219392", + "intfT": "phy", + "iod": "28", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/24", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "55" + }, + "id": "eth1/55", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F3", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219831", + "ifIndex": "436235264", + "intfT": "phy", + "iod": "59", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/55", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "42" + }, + "id": "eth1/42", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:E6", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219818", + "ifIndex": "436228608", + "intfT": "phy", + "iod": "46", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/42", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "25" + }, + "id": "eth1/25", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D5", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219801", + "ifIndex": "436219904", + "intfT": "phy", + "iod": "29", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/25", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "26" + }, + "id": "eth1/26", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D6", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219802", + "ifIndex": "436220416", + "intfT": "phy", + "iod": "30", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/26", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "91" + }, + "id": "eth1/91", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:17", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219867", + "ifIndex": "436253696", + "intfT": "phy", + "iod": "95", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/91", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "114" + }, + "id": "eth1/114", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:2E", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219890", + "ifIndex": "436265472", + "intfT": "phy", + "iod": "118", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/114", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "20" + }, + "id": "eth1/20", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D0", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219796", + "ifIndex": "436217344", + "intfT": "phy", + "iod": "24", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/20", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "69" + }, + "id": "eth1/69", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:01", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219845", + "ifIndex": "436242432", + "intfT": "phy", + "iod": "73", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/69", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "68" + }, + "id": "eth1/68", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:00", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219844", + "ifIndex": "436241920", + "intfT": "phy", + "iod": "72", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/68", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "48" + }, + "id": "eth1/48", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:EC", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219824", + "ifIndex": "436231680", + "intfT": "phy", + "iod": "52", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/48", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "121" + }, + "id": "eth1/121", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:35", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219897", + "ifIndex": "436269056", + "intfT": "phy", + "iod": "125", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/121", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "21" + }, + "id": "eth1/21", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D1", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219797", + "ifIndex": "436217856", + "intfT": "phy", + "iod": "25", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/21", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "34" + }, + "id": "eth1/34", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:DE", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219810", + "ifIndex": "436224512", + "intfT": "phy", + "iod": "38", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/34", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "53" + }, + "id": "eth1/53", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F1", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219829", + "ifIndex": "436234240", + "intfT": "phy", + "iod": "57", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/53", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "3" + }, + "id": "eth1/3", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:BF", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219779", + "ifIndex": "436208640", + "intfT": "phy", + "iod": "7", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/3", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "74" + }, + "id": "eth1/74", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:06", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219850", + "ifIndex": "436244992", + "intfT": "phy", + "iod": "78", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/74", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "122" + }, + "id": "eth1/122", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:36", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219898", + "ifIndex": "436269568", + "intfT": "phy", + "iod": "126", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/122", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "102" + }, + "id": "eth1/102", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:22", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219878", + "ifIndex": "436259328", + "intfT": "phy", + "iod": "106", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/102", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "8" + }, + "id": "eth1/8", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:C4", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219784", + "ifIndex": "436211200", + "intfT": "phy", + "iod": "12", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/8", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "64" + }, + "id": "eth1/64", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:FC", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219840", + "ifIndex": "436239872", + "intfT": "phy", + "iod": "68", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/64", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "75" + }, + "id": "eth1/75", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:07", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219851", + "ifIndex": "436245504", + "intfT": "phy", + "iod": "79", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/75", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "52" + }, + "id": "eth1/52", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:F0", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219828", + "ifIndex": "436233728", + "intfT": "phy", + "iod": "56", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/52", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "127" + }, + "id": "eth1/127", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:3B", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219903", + "ifIndex": "436272128", + "intfT": "phy", + "iod": "131", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/127", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "29" + }, + "id": "eth1/29", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F8:D9", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219805", + "ifIndex": "436221952", + "intfT": "phy", + "iod": "33", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/29", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "128" + }, + "id": "eth1/128", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:3C", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219904", + "ifIndex": "436272640", + "intfT": "phy", + "iod": "132", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/128", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + }, + { + "FECMode": "auto", + "accessVlan": "vlan-1", + "adminSt": "up", + "aggrmbrif-items": { + "bdlPortNum": "0", + "channelingSt": "unknown", + "flags": "", + "ltlProgrammed": "false", + "name": "", + "operSt": "down", + "summOperSt": "down", + "uptime": "00:00:00:00.000" + }, + "autoNeg": "on", + "beacon": "off", + "bw": "0", + "controllerId": "", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "delay": "1", + "dot1qEtherType": "0x8100", + "duplex": "auto", + "eeep-items": { + "eeeLat": "variable", + "eeeLpi": "aggressive", + "eeeState": "not-applicable" + }, + "hwifdetails-items": { + "sPort": "0", + "slice": "0", + "vif": "117" + }, + "id": "eth1/117", + "inhBw": "4294967295", + "layer": "Layer2", + "linkDebounce": "100", + "linkDebounceLinkUp": "0", + "linkLog": "default", + "linkTransmitReset": "enable", + "loadp-items": { + "loadIntvl1": "30", + "loadIntvl2": "300", + "loadIntvl3": "0" + }, + "mdix": "auto", + "medium": "broadcast", + "mode": "access", + "mtu": "1500", + "nativeVlan": "vlan-1", + "packetTimestampEgressSourceId": "0", + "packetTimestampIngressSourceId": "0", + "packetTimestampState": "disable", + "phys-items": { + "accessVlan": "vlan-1", + "adminSt": "up", + "allowedVlans": "1", + "backplaneMac": "52:54:00:5A:F9:31", + "bundleBupId": "1", + "bundleIndex": "unspecified", + "cachedUserCfgdFlags": "", + "cfgAccessVlan": "vlan-1", + "cfgNativeVlan": "vlan-1", + "currErrIndex": "4294967295", + "diags": "none", + "dynamicVlan": "false", + "encap": "3", + "errDisTimerRunning": "false", + "errVlans": "", + "fcot-items": { + "baseResvd1": "0", + "baseResvd2": "0", + "baseResvd3": "0", + "baseResvd4": "0,0,0", + "brIn100MHz": "0", + "brMaxMargin": "0", + "brMinMargin": "0", + "ccex": "0", + "ccid": "0", + "connectType": "0", + "dateCode": "", + "description": "", + "diagMonType": "0", + "distIn100mFor9u": "0", + "distIn10mFor50u": "0", + "distIn10mFor60u": "0", + "distIn1mForCu": "0", + "distInKmFor9u": "0", + "eid": "", + "encoding": "0", + "enhOption": "0", + "extOption": "0,0", + "fCTxType": "0", + "fcotNum": "0", + "fcotType": "0", + "flags": "ok", + "gigEthCC": "0", + "isFcotPresent": "false", + "maxSpeed": "6", + "minSpeed": "6", + "partNumber": "", + "sff8472Compl": "0", + "state": "unknown", + "type": "unknown", + "typeName": "unknown", + "vendorData": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "vendorId": "0,0,0", + "vendorName": "", + "vendorPn": "", + "vendorRev": "", + "vendorSn": "", + "versionId": "", + "xcvrCode": "0,0,0,0,0,0,0,0", + "xcvrExtId": "0", + "xcvrId": "0" + }, + "gport": "134219893", + "ifIndex": "436267008", + "intfT": "phy", + "iod": "121", + "lastErrors": "0,0,0,0", + "lastLinkStChg": "1970-01-01T00:00:00.000+00:00", + "media": "2", + "nativeVlan": "vlan-1", + "numOfSI": "0", + "operAutoNeg": "on", + "operBitset": "4", + "operDceMode": "edge", + "operDescr": "", + "operDuplex": "auto", + "operEEERxWkTime": "0", + "operEEEState": "not-applicable", + "operEEETxWkTime": "0", + "operErrDisQual": "up", + "operFECMode": "auto", + "operFlowCtrl": "", + "operLinkDebounce": "100", + "operMdix": "auto", + "operMode": "access", + "operMtu": "1500", + "operPhyEnSt": "unknown", + "operRouterMac": "52:54:00:5A:F8:BC", + "operSpeed": "auto", + "operSt": "down", + "operStQual": "link-failure", + "operStQualCode": "0", + "operTrunkStatus": "not-trunking", + "operVlans": "", + "portCfgWaitFlags": "0", + "portcap-items": { + "autoneg": "1", + "channel": "1", + "cosRewrite": "1", + "ctsCapable": "31", + "duplex": "full", + "eeeCapVal": "0", + "eeeFlapFlags": "0", + "eeeWakeTimes10g": "0,0,0", + "fcotCapable": "0", + "id": "unspecified", + "linkDebounce": "1", + "linkDebounceTime": "50", + "mdix": "0", + "model": "103,98,105,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "portCap": "167772160", + "portGroup": "255", + "portGrpMbrs": "", + "protoSupport": "16777235", + "qosRxPrio": "0", + "qosRxQueue": "8", + "qosRxThold": "2", + "qosTxPrio": "1", + "qosTxQueue": "7", + "qosTxThold": "4", + "rateMode": "1", + "rxFlowControl": "3", + "span": "1", + "speed": "100,1000,10000", + "suppression": "1", + "tosRewrite": "1", + "trunkEncap": "1", + "txFlowControl": "3", + "type": "49,48,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", + "udld": "1" + }, + "primaryVlan": "vlan-1", + "resetCtr": "0", + "shareState": "dedicated", + "siList": "", + "txT": "unknown", + "usage": "", + "userCfgdFlags": "", + "vdcId": "1" + }, + "physExtd-items": { + "allowMultiTag": "disable", + "bufferBoost": "enable", + "id": "eth1/117", + "portTypeFabric": "no", + "routerMacIpv6Extract": "disable", + "stormCtrlBCastLevel": "100.0", + "stormCtrlBCastPPS": "4294967295", + "stormCtrlMCastLevel": "100.0", + "stormCtrlMCastPPS": "4294967295", + "stormCtrlUCastLevel": "100.0", + "stormCtrlUCastPPS": "4294967295", + "switchportMacLearn": "enable", + "switchportVirtualEthernetBridge": "disable" + }, + "portT": "leaf", + "routerMac": "not-applicable", + "snmpTrapSt": "enable", + "spanMode": "not-a-span-dest", + "speed": "auto", + "speedGroup": "auto", + "stormctrlp-items": { + "burstPps": "4294967295", + "burstRate": "100.0", + "rate": "100.0", + "ratePps": "4294967295", + "type": "all" + }, + "switchingSt": "disabled", + "trunkLog": "default", + "trunkVlans": "1-4094", + "usage": "discovery", + "voicePortCos": "-1", + "voicePortTrust": "-1", + "voiceVlanId": "0", + "voiceVlanType": "none" + } + ] + } + }, + "ipqos-items": { + "queuing-items": { + "policy-items": { + "out-items": { + "intf-items": { + "If-list": [ + { + "name": "eth1/26" + }, + { + "name": "eth1/36" + }, + { + "name": "eth1/102" + }, + { + "name": "eth1/6" + }, + { + "name": "eth1/47" + }, + { + "name": "eth1/57" + }, + { + "name": "eth1/115" + }, + { + "name": "eth1/96" + }, + { + "name": "eth1/5" + }, + { + "name": "eth1/101" + }, + { + "name": "eth1/83" + }, + { + "name": "eth1/49" + }, + { + "name": "eth1/20" + }, + { + "name": "eth1/52" + }, + { + "name": "eth1/13" + }, + { + "name": "eth1/72" + }, + { + "name": "eth1/90" + }, + { + "name": "eth1/44" + }, + { + "name": "eth1/68" + }, + { + "name": "eth1/34" + }, + { + "name": "eth1/123" + }, + { + "name": "eth1/75" + }, + { + "name": "eth1/65" + }, + { + "name": "eth1/71" + }, + { + "name": "eth1/81" + }, + { + "name": "eth1/24" + }, + { + "name": "eth1/12" + }, + { + "name": "eth1/64" + }, + { + "name": "eth1/10" + }, + { + "name": "eth1/92" + }, + { + "name": "eth1/126" + }, + { + "name": "eth1/62" + }, + { + "name": "eth1/4" + }, + { + "name": "eth1/128" + }, + { + "name": "eth1/9" + }, + { + "name": "eth1/85" + }, + { + "name": "eth1/7" + }, + { + "name": "eth1/111" + }, + { + "name": "eth1/55" + }, + { + "name": "eth1/98" + }, + { + "name": "eth1/113" + }, + { + "name": "eth1/63" + }, + { + "name": "eth1/110" + }, + { + "name": "eth1/120" + }, + { + "name": "eth1/108" + }, + { + "name": "eth1/124" + }, + { + "name": "eth1/1" + }, + { + "name": "eth1/97" + }, + { + "name": "eth1/122" + }, + { + "name": "eth1/48" + }, + { + "name": "eth1/46" + }, + { + "name": "eth1/77" + }, + { + "name": "eth1/21" + }, + { + "name": "eth1/60" + }, + { + "name": "eth1/50" + }, + { + "name": "eth1/80" + }, + { + "name": "eth1/16" + }, + { + "name": "eth1/94" + }, + { + "name": "eth1/82" + }, + { + "name": "eth1/17" + }, + { + "name": "eth1/89" + }, + { + "name": "eth1/45" + }, + { + "name": "eth1/32" + }, + { + "name": "eth1/119" + }, + { + "name": "eth1/118" + }, + { + "name": "eth1/23" + }, + { + "name": "eth1/127" + }, + { + "name": "eth1/41" + }, + { + "name": "eth1/105" + }, + { + "name": "eth1/11" + }, + { + "name": "eth1/100" + }, + { + "name": "eth1/37" + }, + { + "name": "eth1/51" + }, + { + "name": "eth1/58" + }, + { + "name": "eth1/56" + }, + { + "name": "eth1/107" + }, + { + "name": "eth1/14" + }, + { + "name": "eth1/95" + }, + { + "name": "eth1/78" + }, + { + "name": "eth1/104" + }, + { + "name": "eth1/31" + }, + { + "name": "eth1/42" + }, + { + "name": "eth1/79" + }, + { + "name": "eth1/2" + }, + { + "name": "eth1/93" + }, + { + "name": "eth1/33" + }, + { + "name": "eth1/61" + }, + { + "name": "eth1/106" + }, + { + "name": "eth1/73" + }, + { + "name": "eth1/22" + }, + { + "name": "eth1/76" + }, + { + "name": "eth1/28" + }, + { + "name": "eth1/91" + }, + { + "name": "eth1/35" + }, + { + "name": "eth1/19" + }, + { + "name": "eth1/117" + }, + { + "name": "eth1/87" + }, + { + "name": "eth1/125" + }, + { + "name": "eth1/114" + }, + { + "name": "eth1/8" + }, + { + "name": "eth1/39" + }, + { + "name": "eth1/54" + }, + { + "name": "eth1/74" + }, + { + "name": "eth1/15" + }, + { + "name": "eth1/29" + }, + { + "name": "eth1/67" + }, + { + "name": "eth1/116" + }, + { + "name": "eth1/38" + }, + { + "name": "eth1/30" + }, + { + "name": "eth1/27" + }, + { + "name": "eth1/40" + }, + { + "name": "eth1/112" + }, + { + "name": "eth1/69" + }, + { + "name": "eth1/109" + }, + { + "name": "eth1/88" + }, + { + "name": "eth1/3" + }, + { + "name": "eth1/103" + }, + { + "name": "eth1/43" + }, + { + "name": "eth1/84" + }, + { + "name": "eth1/18" + }, + { + "name": "eth1/121" + }, + { + "name": "eth1/25" + }, + { + "name": "eth1/53" + }, + { + "name": "eth1/70" + }, + { + "name": "eth1/99" + }, + { + "name": "eth1/86" + }, + { + "name": "eth1/66" + }, + { + "name": "eth1/59" + } + ] + } + } + } + }, + "statClear-items": { + "ethernet": "0", + "portChan": "0", + "timeStamp": "2020-02-04T15:06:05.865+00:00", + "vlan": "0" + }, + "statsState": "enabled" + }, + "ipv4-items": { + "adminSt": "enabled", + "inst-items": { + "accessListMatchLocal": "disabled", + "adminSt": "enabled", + "dom-items": { + "Dom-list": [ + { + "autoDiscard": "disabled", + "if-items": { + "If-list": [ + { + "addr-items": { + "Addr-list": [ + { + "addr": "192.168.101.14/24", + "operSt": "up", + "operStQual": "unspecified", + "pref": "1", + "tag": "0", + "type": "primary" + } + ] + }, + "adminSt": "enabled", + "directedBroadcast": "disabled", + "dropGlean": "disabled", + "forward": "disabled", + "id": "mgmt0", + "operSt": "up", + "operStQual": "unspecified", + "urpf": "disabled" + } + ] + }, + "name": "management", + "rt-items": { + "Route-list": [ + { + "nh-items": { + "Nexthop-list": [ + { + "flags": "", + "nhAddr": "192.168.101.1/32", + "nhIf": "unspecified", + "nhVrf": "management", + "object": "0", + "operSt": "up" + } + ] + }, + "pcTag": "0", + "pref": "1", + "prefix": "0.0.0.0/0", + "tag": "0" + } + ] + } + } + ] + }, + "hardwareEcmpHashOffsetConcat": "disabled", + "hardwareEcmpHashOffsetValue": "0", + "hardwareEcmpHashPolynomial": "CRC16", + "loggingLevel": "error", + "sourceRoute": "enabled" + }, + "operSt": "enabled" + }, + "ipv6-items": { + "adminSt": "enabled", + "inst-items": { + "accessListMatchLocal": "disabled", + "adminSt": "enabled", + "queuePackets": "disabled", + "staticNeighborOutsideSubnet": "disabled", + "switchPackets": "disabled" + }, + "operSt": "enabled" + }, + "l2fm-items": { + "macLearn": "enable" + }, + "lacp-items": { + "adminSt": "enabled", + "inst-items": { + "adminPrio": "32768", + "adminRole": "primary", + "adminSt": "enabled", + "if-items": { + "If-list": [ + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/91", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/28", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/106", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/4", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/25", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/6", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/120", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/35", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/30", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/5", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/119", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/81", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/31", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/84", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/56", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/61", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/66", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/118", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/128", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/116", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/22", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/7", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/51", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/9", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/92", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/90", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/73", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/19", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/93", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/64", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/115", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/78", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/114", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/121", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/83", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/75", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/112", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/3", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/41", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/122", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/33", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/50", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/124", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/59", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/21", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/109", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/29", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/23", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/55", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/107", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/89", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/94", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/44", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/77", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/117", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/47", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/42", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/67", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/102", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/26", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/76", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/18", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/62", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/71", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/95", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/85", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/60", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/8", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/97", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/39", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/38", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/79", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/17", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/96", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/105", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/70", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/110", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/45", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/127", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/87", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/125", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/88", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/15", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/101", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/111", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/34", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/113", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/68", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/57", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/54", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/13", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/2", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/53", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/98", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/48", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/65", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/11", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/72", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/12", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/126", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/103", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/36", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/80", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/52", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/82", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/10", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/20", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/1", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/27", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/74", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/16", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/14", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/24", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/99", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/108", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/43", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/104", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/32", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/69", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/86", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/37", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/40", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/46", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/63", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/49", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/58", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/100", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + }, + { + "activityFlags": "", + "adminSt": "enabled", + "id": "eth1/123", + "key": "0", + "lastActive": "1970-01-01T00:00:00.000+00:00", + "operPrio": "32768", + "port": "0", + "prio": "32768", + "txRate": "normal" + } + ] + }, + "operErr": "", + "operPrio": "32768", + "operRole": "primary", + "sysMac": "00:00:00:00:00:00" + }, + "operSt": "enabled" + }, + "lldp-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled", + "holdTime": "120", + "if-items": { + "If-list": [ + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/107", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/111", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/99", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/117", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/77", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/16", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/19", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/70", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/88", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/84", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/5", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/119", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/94", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/118", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/1", + "ifstats-items": { + "entriesAged": "0", + "errPktRcvd": "0", + "pktDiscarded": "0", + "pktRcvd": "0", + "pktSent": "42805", + "unrecogTLV": "0" + }, + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/105", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/50", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/76", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/123", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/71", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/96", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/17", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/95", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/42", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/48", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/22", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/113", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/74", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/27", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/128", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/120", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/14", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/85", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/122", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/46", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/126", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/32", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/121", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/52", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/37", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/83", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/8", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/18", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/38", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/75", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/43", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/3", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "mgmt0", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/23", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/57", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/64", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/33", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/61", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/40", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/79", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/124", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/49", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/65", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/2", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/56", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/13", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/25", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/116", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/7", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/67", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/115", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/69", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/31", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/9", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/78", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/63", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/26", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/100", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/34", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/45", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/127", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/125", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/28", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/97", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/80", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/29", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/62", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/110", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/82", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/20", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/106", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/11", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/30", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/41", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/6", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/21", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/36", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/101", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/58", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/114", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/102", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/44", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/39", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/51", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/109", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/81", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/93", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/12", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/91", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/35", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/87", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/54", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/72", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/55", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/86", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/60", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/108", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/15", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/73", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/10", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/103", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/104", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/90", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/47", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/68", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/59", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/112", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/53", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/66", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/89", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/24", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/98", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/4", + "tlvSetVlan": "0" + }, + { + "adminRxSt": "enabled", + "adminSt": "enabled", + "adminTxSt": "enabled", + "id": "eth1/92", + "tlvSetVlan": "0" + } + ] + }, + "initDelayTime": "2", + "inststats-items": { + "entriesAged": "0", + "errPktRcvd": "0", + "pktDiscarded": "0", + "pktRcvd": "0", + "pktSent": "122233", + "unrecogTLV": "0" + }, + "optTlvSel": "dcbxp,mgmt-addr-v4,mgmt-addr-v6,port-desc,port-vlan,power-mgmt,sys-cap,sys-desc,sys-name", + "portIdSubType": "long", + "txFreq": "30" + }, + "operSt": "enabled" + }, + "lsnode-items": { + "LooseNode-list": [ + { + "id": "192.168.101.14", + "rslsNodeToIf-items": { + "RsLsNodeToIf-list": [ + { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/2']" + }, + { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/1']" + } + ] + } + }, + { + "id": "192.168.101.17", + "rslsNodeToIf-items": { + "RsLsNodeToIf-list": [ + { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/2']" + }, + { + "tCl": "l1PhysIf", + "tDn": "/System/intf-items/phys-items/PhysIf-list[id='eth1/1']" + } + ] + } + } + ] + }, + "mac-items": { + "aging": "1800", + "table-items": { + "vlan-items": { + "MacAddressEntry-list": [ + { + "age": "0", + "macAddress": "52:54:00:5A:F8:BC", + "macInfo": "standard", + "ntfy": "false", + "port": "supeth1", + "routed": "true", + "secure": "false", + "static": "true", + "type": "gateway", + "vlan": "vlan-0" + } + ] + } + } + }, + "macsec-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled" + }, + "operSt": "enabled" + }, + "mcp-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled" + }, + "mgmt-items": { + "MgmtIf-list": [ + { + "adminSt": "up", + "autoNeg": "on", + "dbgDot3Stats-items": { + "alignmentErrors": "0", + "babble": "0", + "carrierSenseErrors": "0", + "controlInUnknownOpcodes": "0", + "deferredTransmissions": "0", + "excessiveCollisions": "0", + "fCSErrors": "0", + "frameTooLongs": "0", + "inPauseFrames": "0", + "inputdribble": "0", + "internalMacReceiveErrors": "0", + "internalMacTransmitErrors": "0", + "lateCollisions": "0", + "lostCarrierErrors": "0", + "multipleCollisionFrames": "0", + "noCarrierErrors": "0", + "outPauseFrames": "0", + "runts": "0", + "sQETTestErrors": "0", + "singleCollisionFrames": "0", + "symbolErrors": "0" + }, + "dbgEtherStats-items": { + "broadcastPkts": "0", + "cRCAlignErrors": "0", + "collisions": "0", + "dropEvents": "0", + "fragments": "0", + "giantPkts": "0", + "ifdowndrop": "0", + "ignored": "0", + "jabbers": "0", + "multicastPkts": "0", + "octets": "0", + "overrun": "0", + "oversizePkts": "0", + "pkts": "0", + "pkts1024to1518Octets": "0", + "pkts128to255Octets": "0", + "pkts1519to1548Octets": "0", + "pkts256to511Octets": "0", + "pkts512to1023Octets": "0", + "pkts64Octets": "0", + "pkts65to127Octets": "0", + "rXNoErrors": "0", + "rxOversizePkts": "0", + "rxPkts1024to1518Octets": "0", + "rxPkts128to255Octets": "0", + "rxPkts1519to1548Octets": "0", + "rxPkts256to511Octets": "0", + "rxPkts512to1023Octets": "0", + "rxPkts64Octets": "0", + "rxPkts65to127Octets": "0", + "stormSupressedPkts": "0", + "tXNoErrors": "0", + "txOversizePkts": "0", + "txPkts1024to1518Octets": "0", + "txPkts128to255Octets": "0", + "txPkts1519to1548Octets": "0", + "txPkts256to511Octets": "0", + "txPkts512to1023Octets": "0", + "txPkts64Octets": "0", + "txPkts65to127Octets": "0", + "underrun": "0", + "undersizePkts": "0", + "watchdog": "0" + }, + "dbgIfHCIn-items": { + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfHCOut-items": { + "broadcastPckts": "0", + "broadcastPkts": "0", + "multicastPkts": "0", + "octets": "0", + "ucastPkts": "0" + }, + "dbgIfIn-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "noBuffer": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "rateInterval": "0", + "ucastPkts": "0", + "unknownEtype": "0", + "unknownProtos": "0" + }, + "dbgIfOut-items": { + "broadcastPkts": "0", + "discards": "0", + "errors": "0", + "multicastPkts": "0", + "nUcastPkts": "0", + "octetRate": "0", + "octets": "0", + "packetRate": "0", + "qLen": "0", + "rateInterval": "0", + "ucastPkts": "0" + }, + "duplex": "auto", + "id": "mgmt0", + "mgmt-items": { + "backplaneMac": "52:54:00:5A:F8:B5", + "iod": "2", + "lastLinkStChg": "2020-09-24T21:10:29.521+00:00", + "operDuplex": "full", + "operMtu": "1500", + "operPhyLayer": "ethernet", + "operRouterMac": "52:54:00:5A:F8:B5", + "operSpeed": "1G", + "operSt": "up", + "operStQual": "link-up", + "portInitEvalFlag": "1", + "vdcId": "1" + }, + "mtu": "1500", + "portcap-items": { + "portCap": "239" + }, + "rtvrfMbr-items": { + "tCl": "l3Inst", + "tDn": "/System/inst-items/Inst-list[mode='management']" + }, + "snmpTrapSt": "enable", + "speed": "auto" + } + ] + }, + "mts-items": { + "topsaps-items": { + "memUsed": "0" + } + }, + "name": "nxos101", + "nd-items": { + "adminSt": "enabled", + "inst-items": { + "acceptSolicitNghbrEntry": "none", + "adminSt": "enabled", + "agingInterval": "1380", + "cacheLimit": "174080", + "cacheSyslogRate": "1", + "configErr": "", + "ipv6AdjRouteDistance": "250", + "offListTimeout": "180", + "probeIntervalForSolicitNghbr": "5", + "solicitNghbrAdvertisement": "disabled" + }, + "operSt": "enabled" + }, + "npv-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled" + }, + "name": "", + "operSt": "enabled" + }, + "nxapi-items": { + "httpPort": "80", + "httpsPort": "443", + "sslCiphersWeak": "false", + "sslProtocols": "TLSv1.1 TLSv1.2" + }, + "ops-items": { + "name": "", + "psgp-items": { + "acRdnCap": "0", + "adminRdnM": "ps-rdn", + "alPwr": "180", + "avPwr": "0", + "cordsConnected": "false", + "flRdnCap": "0", + "grdACap": "0", + "grdBCap": "0", + "grdRdnCap": "0", + "inputDraw": "0", + "nRdnCap": "0", + "operRdnM": "ps-rdn", + "outputDraw": "0", + "psRdnCap": "0", + "rsdPwr": "0", + "rspsuInstPolCons-items": { + "tCl": "psuInstPol", + "tDn": "UNRES:uni/fabric/psuInstP-default" + }, + "tc": "180", + "unit": "W" + } + }, + "ospf-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "pc-items": { + "adminSt": "enabled", + "operSt": "enabled", + "pc-items": { + "adminSt": "enabled", + "ctrl": "", + "freeChannels": "511", + "hashDist": "adaptive", + "loadDeferTime": "120", + "maxChannels": "511", + "name": "", + "pcntChannels": "0", + "usedChannels": "0" + } + }, + "pltfm-items": { + "IPV6alpmCarveValue": "0", + "bd-items": { + "bd-items": { + "Bd-list": [ + { + "fabEncap": "vlan-1" + } + ] + }, + "descr": "" + }, + "buffermonitor-items": { + "bufferMonitorMode": "None", + "bufferMonitorState": "Disable", + "bufferMonitorThreshhold": "0", + "sampling": "4294967295" + }, + "intf-items": { + "descr": "", + "if-items": { + "If-list": [ + { + "eltmIf-items": { + "hwBdId": "4215" + }, + "id": "eth1/116" + }, + { + "eltmIf-items": { + "hwBdId": "4152" + }, + "id": "eth1/53" + }, + { + "eltmIf-items": { + "hwBdId": "4161" + }, + "id": "eth1/62" + }, + { + "eltmIf-items": { + "hwBdId": "4147" + }, + "id": "eth1/48" + }, + { + "eltmIf-items": { + "hwBdId": "4149" + }, + "id": "eth1/50" + }, + { + "eltmIf-items": { + "hwBdId": "4159" + }, + "id": "eth1/60" + }, + { + "eltmIf-items": { + "hwBdId": "4103" + }, + "id": "eth1/4" + }, + { + "eltmIf-items": { + "hwBdId": "4194" + }, + "id": "eth1/95" + }, + { + "eltmIf-items": { + "hwBdId": "4225" + }, + "id": "eth1/126" + }, + { + "eltmIf-items": { + "hwBdId": "4179" + }, + "id": "eth1/80" + }, + { + "eltmIf-items": { + "hwBdId": "4175" + }, + "id": "eth1/76" + }, + { + "eltmIf-items": { + "hwBdId": "4120" + }, + "id": "eth1/21" + }, + { + "eltmIf-items": { + "hwBdId": "4142" + }, + "id": "eth1/43" + }, + { + "eltmIf-items": { + "hwBdId": "4226" + }, + "id": "eth1/127" + }, + { + "eltmIf-items": { + "hwBdId": "4125" + }, + "id": "eth1/26" + }, + { + "eltmIf-items": { + "hwBdId": "4181" + }, + "id": "eth1/82" + }, + { + "eltmIf-items": { + "hwBdId": "4184" + }, + "id": "eth1/85" + }, + { + "eltmIf-items": { + "hwBdId": "4185" + }, + "id": "eth1/86" + }, + { + "eltmIf-items": { + "hwBdId": "4148" + }, + "id": "eth1/49" + }, + { + "eltmIf-items": { + "hwBdId": "4224" + }, + "id": "eth1/125" + }, + { + "eltmIf-items": { + "hwBdId": "4114" + }, + "id": "eth1/15" + }, + { + "eltmIf-items": { + "hwBdId": "4220" + }, + "id": "eth1/121" + }, + { + "eltmIf-items": { + "hwBdId": "4137" + }, + "id": "eth1/38" + }, + { + "eltmIf-items": { + "hwBdId": "4172" + }, + "id": "eth1/73" + }, + { + "eltmIf-items": { + "hwBdId": "4197" + }, + "id": "eth1/98" + }, + { + "eltmIf-items": { + "hwBdId": "4123" + }, + "id": "eth1/24" + }, + { + "eltmIf-items": { + "hwBdId": "4134" + }, + "id": "eth1/35" + }, + { + "eltmIf-items": { + "hwBdId": "4190" + }, + "id": "eth1/91" + }, + { + "eltmIf-items": { + "hwBdId": "4155" + }, + "id": "eth1/56" + }, + { + "eltmIf-items": { + "hwBdId": "4132" + }, + "id": "eth1/33" + }, + { + "eltmIf-items": { + "hwBdId": "4216" + }, + "id": "eth1/117" + }, + { + "eltmIf-items": { + "hwBdId": "4133" + }, + "id": "eth1/34" + }, + { + "eltmIf-items": { + "hwBdId": "4160" + }, + "id": "eth1/61" + }, + { + "eltmIf-items": { + "hwBdId": "4173" + }, + "id": "eth1/74" + }, + { + "eltmIf-items": { + "hwBdId": "4129" + }, + "id": "eth1/30" + }, + { + "eltmIf-items": { + "hwBdId": "4156" + }, + "id": "eth1/57" + }, + { + "eltmIf-items": { + "hwBdId": "4193" + }, + "id": "eth1/94" + }, + { + "eltmIf-items": { + "hwBdId": "4227" + }, + "id": "eth1/128" + }, + { + "eltmIf-items": { + "hwBdId": "4131" + }, + "id": "eth1/32" + }, + { + "eltmIf-items": { + "hwBdId": "4206" + }, + "id": "eth1/107" + }, + { + "eltmIf-items": { + "hwBdId": "4153" + }, + "id": "eth1/54" + }, + { + "eltmIf-items": { + "hwBdId": "4186" + }, + "id": "eth1/87" + }, + { + "eltmIf-items": { + "hwBdId": "4205" + }, + "id": "eth1/106" + }, + { + "eltmIf-items": { + "hwBdId": "4189" + }, + "id": "eth1/90" + }, + { + "eltmIf-items": { + "hwBdId": "4141" + }, + "id": "eth1/42" + }, + { + "eltmIf-items": { + "hwBdId": "4109" + }, + "id": "eth1/10" + }, + { + "eltmIf-items": { + "hwBdId": "4195" + }, + "id": "eth1/96" + }, + { + "eltmIf-items": { + "hwBdId": "4222" + }, + "id": "eth1/123" + }, + { + "eltmIf-items": { + "hwBdId": "4100" + }, + "id": "eth1/1" + }, + { + "eltmIf-items": { + "hwBdId": "4182" + }, + "id": "eth1/83" + }, + { + "eltmIf-items": { + "hwBdId": "4213" + }, + "id": "eth1/114" + }, + { + "eltmIf-items": { + "hwBdId": "4106" + }, + "id": "eth1/7" + }, + { + "eltmIf-items": { + "hwBdId": "4203" + }, + "id": "eth1/104" + }, + { + "eltmIf-items": { + "hwBdId": "4199" + }, + "id": "eth1/100" + }, + { + "eltmIf-items": { + "hwBdId": "4110" + }, + "id": "eth1/11" + }, + { + "eltmIf-items": { + "hwBdId": "4154" + }, + "id": "eth1/55" + }, + { + "eltmIf-items": { + "hwBdId": "4101" + }, + "id": "eth1/2" + }, + { + "eltmIf-items": { + "hwBdId": "4145" + }, + "id": "eth1/46" + }, + { + "eltmIf-items": { + "hwBdId": "4126" + }, + "id": "eth1/27" + }, + { + "eltmIf-items": { + "hwBdId": "4166" + }, + "id": "eth1/67" + }, + { + "eltmIf-items": { + "hwBdId": "4130" + }, + "id": "eth1/31" + }, + { + "eltmIf-items": { + "hwBdId": "4128" + }, + "id": "eth1/29" + }, + { + "eltmIf-items": { + "hwBdId": "4102" + }, + "id": "eth1/3" + }, + { + "eltmIf-items": { + "hwBdId": "4180" + }, + "id": "eth1/81" + }, + { + "eltmIf-items": { + "hwBdId": "4207" + }, + "id": "eth1/108" + }, + { + "eltmIf-items": { + "hwBdId": "4192" + }, + "id": "eth1/93" + }, + { + "eltmIf-items": { + "hwBdId": "4138" + }, + "id": "eth1/39" + }, + { + "eltmIf-items": { + "hwBdId": "4177" + }, + "id": "eth1/78" + }, + { + "eltmIf-items": { + "hwBdId": "4111" + }, + "id": "eth1/12" + }, + { + "eltmIf-items": { + "hwBdId": "4104" + }, + "id": "eth1/5" + }, + { + "eltmIf-items": { + "hwBdId": "4117" + }, + "id": "eth1/18" + }, + { + "eltmIf-items": { + "hwBdId": "4214" + }, + "id": "eth1/115" + }, + { + "eltmIf-items": { + "hwBdId": "4127" + }, + "id": "eth1/28" + }, + { + "eltmIf-items": { + "hwBdId": "4223" + }, + "id": "eth1/124" + }, + { + "eltmIf-items": { + "hwBdId": "4196" + }, + "id": "eth1/97" + }, + { + "eltmIf-items": { + "hwBdId": "4219" + }, + "id": "eth1/120" + }, + { + "eltmIf-items": { + "hwBdId": "4170" + }, + "id": "eth1/71" + }, + { + "eltmIf-items": { + "hwBdId": "4188" + }, + "id": "eth1/89" + }, + { + "eltmIf-items": { + "hwBdId": "4169" + }, + "id": "eth1/70" + }, + { + "eltmIf-items": { + "hwBdId": "4121" + }, + "id": "eth1/22" + }, + { + "eltmIf-items": { + "hwBdId": "4171" + }, + "id": "eth1/72" + }, + { + "eltmIf-items": { + "hwBdId": "4158" + }, + "id": "eth1/59" + }, + { + "eltmIf-items": { + "hwBdId": "4191" + }, + "id": "eth1/92" + }, + { + "eltmIf-items": { + "hwBdId": "4174" + }, + "id": "eth1/75" + }, + { + "eltmIf-items": { + "hwBdId": "4143" + }, + "id": "eth1/44" + }, + { + "eltmIf-items": { + "hwBdId": "4211" + }, + "id": "eth1/112" + }, + { + "eltmIf-items": { + "hwBdId": "4178" + }, + "id": "eth1/79" + }, + { + "eltmIf-items": { + "hwBdId": "4200" + }, + "id": "eth1/101" + }, + { + "eltmIf-items": { + "hwBdId": "4112" + }, + "id": "eth1/13" + }, + { + "eltmIf-items": { + "hwBdId": "4139" + }, + "id": "eth1/40" + }, + { + "eltmIf-items": { + "hwBdId": "4116" + }, + "id": "eth1/17" + }, + { + "eltmIf-items": { + "hwBdId": "4146" + }, + "id": "eth1/47" + }, + { + "eltmIf-items": { + "hwBdId": "4212" + }, + "id": "eth1/113" + }, + { + "eltmIf-items": { + "hwBdId": "4136" + }, + "id": "eth1/37" + }, + { + "eltmIf-items": { + "hwBdId": "4163" + }, + "id": "eth1/64" + }, + { + "eltmIf-items": { + "hwBdId": "4107" + }, + "id": "eth1/8" + }, + { + "eltmIf-items": { + "hwBdId": "4122" + }, + "id": "eth1/23" + }, + { + "eltmIf-items": { + "hwBdId": "4108" + }, + "id": "eth1/9" + }, + { + "eltmIf-items": { + "hwBdId": "4198" + }, + "id": "eth1/99" + }, + { + "eltmIf-items": { + "hwBdId": "4119" + }, + "id": "eth1/20" + }, + { + "eltmIf-items": { + "hwBdId": "4150" + }, + "id": "eth1/51" + }, + { + "eltmIf-items": { + "hwBdId": "4183" + }, + "id": "eth1/84" + }, + { + "eltmIf-items": { + "hwBdId": "4221" + }, + "id": "eth1/122" + }, + { + "eltmIf-items": { + "hwBdId": "4209" + }, + "id": "eth1/110" + }, + { + "eltmIf-items": { + "hwBdId": "4187" + }, + "id": "eth1/88" + }, + { + "eltmIf-items": { + "hwBdId": "4164" + }, + "id": "eth1/65" + }, + { + "eltmIf-items": { + "hwBdId": "4201" + }, + "id": "eth1/102" + }, + { + "eltmIf-items": { + "hwBdId": "4151" + }, + "id": "eth1/52" + }, + { + "eltmIf-items": { + "hwBdId": "4202" + }, + "id": "eth1/103" + }, + { + "eltmIf-items": { + "hwBdId": "4113" + }, + "id": "eth1/14" + }, + { + "eltmIf-items": { + "hwBdId": "4144" + }, + "id": "eth1/45" + }, + { + "eltmIf-items": { + "hwBdId": "4167" + }, + "id": "eth1/68" + }, + { + "eltmIf-items": { + "hwBdId": "4217" + }, + "id": "eth1/118" + }, + { + "eltmIf-items": { + "hwBdId": "4162" + }, + "id": "eth1/63" + }, + { + "eltmIf-items": { + "hwBdId": "4165" + }, + "id": "eth1/66" + }, + { + "eltmIf-items": { + "hwBdId": "4124" + }, + "id": "eth1/25" + }, + { + "eltmIf-items": { + "hwBdId": "4204" + }, + "id": "eth1/105" + }, + { + "eltmIf-items": { + "hwBdId": "4140" + }, + "id": "eth1/41" + }, + { + "eltmIf-items": { + "hwBdId": "4218" + }, + "id": "eth1/119" + }, + { + "eltmIf-items": { + "hwBdId": "4210" + }, + "id": "eth1/111" + }, + { + "eltmIf-items": { + "hwBdId": "4208" + }, + "id": "eth1/109" + }, + { + "eltmIf-items": { + "hwBdId": "4157" + }, + "id": "eth1/58" + }, + { + "eltmIf-items": { + "hwBdId": "4176" + }, + "id": "eth1/77" + }, + { + "eltmIf-items": { + "hwBdId": "4168" + }, + "id": "eth1/69" + }, + { + "eltmIf-items": { + "hwBdId": "4115" + }, + "id": "eth1/16" + }, + { + "eltmIf-items": { + "hwBdId": "4135" + }, + "id": "eth1/36" + }, + { + "eltmIf-items": { + "hwBdId": "4105" + }, + "id": "eth1/6" + }, + { + "eltmIf-items": { + "hwBdId": "4118" + }, + "id": "eth1/19" + } + ] + } + }, + "latencymonitor-items": { + "latencyMonitorState": "Disable", + "latencyMonitorThreshholdAvg": "1000000", + "latencyMonitorThreshholdMax": "2000000", + "sampling": "3" + }, + "multicastMaxLimit": "4096", + "multicastServiceReflectPort": "0", + "pcLbAlgo": "PC_LB_ALGO_DLB", + "pfcmmubuffer-items": { + "bufferReservation": "5", + "mmuBufferState": "disable" + }, + "profileMode": "Default", + "profileTuple": "Disable", + "pstatCfg": "PSTAT_DISABLE", + "qosMinBuffer": "all", + "routingMode": "DEFAULT", + "switchingFabricSpeed": "DEFAULT", + "switchingMode": "DEFAULT", + "tcamRegion-items": { + "eRaclSize": "768", + "ingFlowSize": "0", + "vpcConvergenceSize": "512" + }, + "urpfStatus": "disabled" + }, + "poe-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "procsys-items": { + "maxMemAlloc": "5282520", + "name": "sysinfo", + "syscore-items": { + "name": "syscore", + "numOfCores": "0" + }, + "syscpusummary-items": { + "idle": "96.391747", + "kernel": "2.577320", + "name": "syscpusummary", + "syscpu-items": { + "SysCpu-list": [ + { + "id": "cpu3", + "idle": "100.000000", + "kernel": "0.000000", + "name": "syscpu", + "user": "0.000000" + }, + { + "id": "cpu2", + "idle": "97.029701", + "kernel": "1.980198", + "name": "syscpu", + "user": "0.990099" + }, + { + "id": "cpu0", + "idle": "94.949493", + "kernel": "3.030303", + "name": "syscpu", + "user": "2.020202" + }, + { + "id": "cpu1", + "idle": "92.134834", + "kernel": "6.741573", + "name": "syscpu", + "user": "1.123595" + } + ] + }, + "syscpuhistory-items": { + "SysCpuHistory-list": [ + { + "durationname": "last60seconds", + "name": "syscpuhistory", + "usage": "27,4,2,2,3,3,10,2,6,2,5,3,4,2,4,7,2,6,3,3,20,4,3,4,6,5,2,2,5,8,6,3,3,6,6,2,4,3,3,2,5,2,3,9,3,4,3,2,1,2,2,2,9,3,1,1,3,2,2,3" + } + ] + }, + "user": "1.030928" + }, + "sysload-items": { + "loadAverage15m": "0.300000", + "loadAverage1m": "0.290000", + "loadAverage5m": "0.360000", + "name": "sysload", + "runProc": "2", + "totalProc": "329" + }, + "sysmem-items": { + "free": "2751980", + "memstatus": "OK", + "name": "sysmem", + "total": "8035024", + "used": "5283044" + }, + "upTs": "14 days(s) 20 hour(s) 55 minute(s) 25 second(s) " + }, + "qosm-items": { + "adminSt": "enabled", + "classp-items": { + "Class-list": [ + { + "admin": "enabled", + "buffer-items": { + "descr": "", + "min": "0", + "name": "" + }, + "cong-items": { + "algo": "wred", + "descr": "", + "ecn": "disabled", + "name": "" + }, + "descr": "", + "mtu": "9216", + "name": "", + "operSt": "disabled", + "qosGrp": "control-plane", + "queue-items": { + "descr": "", + "limit": "1500", + "meth": "dynamic", + "name": "" + }, + "sched-items": { + "bw": "0", + "descr": "", + "meth": "sp", + "name": "" + } + }, + { + "admin": "enabled", + "buffer-items": { + "descr": "", + "min": "0", + "name": "" + }, + "cong-items": { + "algo": "wred", + "descr": "", + "ecn": "disabled", + "name": "" + }, + "descr": "", + "mtu": "9216", + "name": "", + "operSt": "disabled", + "qosGrp": "span", + "queue-items": { + "descr": "", + "limit": "1500", + "meth": "dynamic", + "name": "" + }, + "sched-items": { + "bw": "1", + "descr": "", + "meth": "wrr", + "name": "" + } + }, + { + "admin": "enabled", + "buffer-items": { + "descr": "", + "min": "0", + "name": "" + }, + "cong-items": { + "algo": "wred", + "descr": "", + "ecn": "disabled", + "name": "" + }, + "descr": "", + "mtu": "9216", + "name": "", + "operSt": "disabled", + "qosGrp": "level3", + "queue-items": { + "descr": "", + "limit": "1500", + "meth": "dynamic", + "name": "" + }, + "sched-items": { + "bw": "20", + "descr": "", + "meth": "wrr", + "name": "" + } + } + ] + }, + "name": "", + "operSt": "enabled" + }, + "retry-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled" + }, + "rpm-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled" + }, + "scrtchpdrt-items": { + "rpmcli-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled" + }, + "vlanmgrcli-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled", + "ctrl": "", + "name": "", + "vxlanNativeVlans": "true" + }, + "name": "", + "operSt": "enabled" + } + }, + "serial": "970MUM0NTLV", + "showversion-items": { + "activePackage": "", + "biosCompileTime": "", + "biosVersion": "", + "bootflashSize": "3509454", + "copyRight": "Cisco Nexus Operating System (NX-OS) Software\nTAC support: http://www.cisco.com/tac\nDocuments: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html\nCopyright (c) 2002-2018, Cisco Systems, Inc. All rights reserved.\nThe copyrights to certain works contained herein are owned by\nother third parties and are used and distributed under license.\nSome parts of this software are covered under the GNU Public\nLicense. A copy of the license is available at\nhttp://www.gnu.org/licenses/gpl.html.\n\nNexus 9000v is a demo version of the Nexus Operating System\n", + "kernelUptime": "14 days(s) 20 hour(s) 55 minute(s) 27 second(s) ", + "lastResetReason": "Unknown", + "lastResetService": "", + "lastResetSysVersion": "", + "lastResetTime": "", + "nxosCompileTime": " 11/4/2018 21:00:00", + "nxosImageFile": "bootflash:///nxos.9.2.2.bin", + "nxosVersion": "9.2(2)", + "plugin": "Core Plugin, Ethernet Plugin" + }, + "snmp-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "disabled", + "lclUser-items": { + "LocalUser-list": [ + { + "authtype": "md5", + "group-items": { + "UserGroup-list": [ + { + "groupName": "network-admin" + } + ] + }, + "isenforcepriv": "false", + "islocalizedkey": "false", + "privtype": "des", + "userName": "bthornto", + "usrengineIdlen": "0" + }, + { + "authtype": "md5", + "group-items": { + "UserGroup-list": [ + { + "groupName": "network-admin" + } + ] + }, + "isenforcepriv": "false", + "islocalizedkey": "false", + "privtype": "des", + "userName": "admin", + "usrengineIdlen": "0" + } + ] + }, + "name": "default", + "rmon-items": { + "event-items": { + "Event-list": [ + { + "description": "CRITICAL(2)", + "log": "no", + "num": "2", + "owner": "PMON@CRITICAL" + }, + { + "description": "INFORMATION(5)", + "log": "no", + "num": "5", + "owner": "PMON@INFO" + }, + { + "description": "WARNING(4)", + "log": "no", + "num": "4", + "owner": "PMON@WARNING" + }, + { + "description": "FATAL(1)", + "log": "no", + "num": "1", + "owner": "PMON@FATAL" + }, + { + "description": "ERROR(3)", + "log": "no", + "num": "3", + "owner": "PMON@ERROR" + } + ] + } + }, + "traps-items": { + "aaa-items": { + "serverstatechange-items": { + "trapstatus": "disable" + } + }, + "bfd-items": { + "sessiondown-items": { + "trapstatus": "disable" + }, + "sessionup-items": { + "trapstatus": "disable" + } + }, + "bridge-items": { + "newroot-items": { + "trapstatus": "disable" + }, + "topologychange-items": { + "trapstatus": "disable" + } + }, + "callhome-items": { + "eventnotify-items": { + "trapstatus": "disable" + }, + "smtpsendfail-items": { + "trapstatus": "disable" + } + }, + "cfs-items": { + "mergefailure-items": { + "trapstatus": "disable" + }, + "statechangenotif-items": { + "trapstatus": "disable" + } + }, + "config-items": { + "ccmCLIRunningConfigChanged-items": { + "trapstatus": "disable" + } + }, + "entity-items": { + "cefcMIBEnableStatusNotification-items": { + "trapstatus": "enable" + }, + "entityfanstatuschange-items": { + "trapstatus": "enable" + }, + "entitymibchange-items": { + "trapstatus": "enable" + }, + "entitymoduleinserted-items": { + "trapstatus": "enable" + }, + "entitymoduleremoved-items": { + "trapstatus": "enable" + }, + "entitymodulestatuschange-items": { + "trapstatus": "enable" + }, + "entitypoweroutchange-items": { + "trapstatus": "enable" + }, + "entitypowerstatuschange-items": { + "trapstatus": "enable" + }, + "entitysensor-items": { + "trapstatus": "enable" + }, + "entityunrecognisedmodule-items": { + "trapstatus": "enable" + } + }, + "featurecontrol-items": { + "FeatureOpStatusChange-items": { + "trapstatus": "disable" + }, + "ciscoFeatOpStatusChange-items": { + "trapstatus": "disable" + } + }, + "generic-items": { + "coldStart-items": { + "trapstatus": "enable" + }, + "warmStart-items": { + "trapstatus": "enable" + } + }, + "hsrp-items": { + "statechange-items": { + "trapstatus": "disable" + } + }, + "ip-items": { + "sla-items": { + "trapstatus": "disable" + } + }, + "license-items": { + "notifylicenseexpiry-items": { + "trapstatus": "enable" + }, + "notifylicenseexpirywarning-items": { + "trapstatus": "enable" + }, + "notifylicensefilemissing-items": { + "trapstatus": "enable" + }, + "notifynolicenseforfeature-items": { + "trapstatus": "enable" + } + }, + "link-items": { + "cerrdisableinterfaceeventrev1-items": { + "trapstatus": "enable" + }, + "cieLinkDown-items": { + "trapstatus": "enable" + }, + "cieLinkUp-items": { + "trapstatus": "enable" + }, + "ciscoxcvrmonstatuschg-items": { + "trapstatus": "disable" + }, + "cmnmacmovenotification-items": { + "trapstatus": "enable" + }, + "delayedlinkstatechange-items": { + "trapstatus": "enable" + }, + "extendedlinkDown-items": { + "trapstatus": "enable" + }, + "extendedlinkUp-items": { + "trapstatus": "enable" + }, + "linkDown-items": { + "trapstatus": "enable" + }, + "linkUp-items": { + "trapstatus": "enable" + } + }, + "lldp-items": { + "lldpRemTablesChange-items": { + "trapstatus": "disable" + } + }, + "mmode-items": { + "cseMaintModeChangeNotify-items": { + "trapstatus": "disable" + }, + "cseNormalModeChangeNotify-items": { + "trapstatus": "disable" + } + }, + "msdp-items": { + "msdpBackwardTransition-items": { + "trapstatus": "disable" + } + }, + "pim-items": { + "pimNeighborLoss-items": { + "trapstatus": "disable" + } + }, + "poe-items": { + "controlenable-items": { + "trapstatus": "disable" + }, + "policenotify-items": { + "trapstatus": "disable" + } + }, + "portsecurity-items": { + "accesssecuremacviolation-items": { + "trapstatus": "disable" + }, + "trunksecuremacviolation-items": { + "trapstatus": "disable" + } + }, + "rf-items": { + "redundancyframework-items": { + "trapstatus": "enable" + } + }, + "rmon-items": { + "fallingAlarm-items": { + "trapstatus": "enable" + }, + "hcFallingAlarm-items": { + "trapstatus": "enable" + }, + "hcRisingAlarm-items": { + "trapstatus": "enable" + }, + "risingAlarm-items": { + "trapstatus": "enable" + } + }, + "snmp-items": { + "authentication-items": { + "trapstatus": "disable" + } + }, + "stormcontrol-items": { + "cpscEventRev1-items": { + "trapstatus": "enable" + }, + "traprate": "0" + }, + "stpx-items": { + "inconsistency-items": { + "trapstatus": "disable" + }, + "loopinconsistency-items": { + "trapstatus": "disable" + }, + "rootinconsistency-items": { + "trapstatus": "disable" + } + }, + "sysmgr-items": { + "cseFailSwCoreNotifyExtended-items": { + "trapstatus": "disable" + } + }, + "system-items": { + "Clockchangenotification-items": { + "trapstatus": "disable" + } + }, + "upgrade-items": { + "UpgradeJobStatusNotify-items": { + "trapstatus": "enable" + } + }, + "vsan-items": { + "vsanPortMembershipChange-items": { + "trapstatus": "disable" + }, + "vsanStatusChange-items": { + "trapstatus": "disable" + } + }, + "vtp-items": { + "notifs-items": { + "trapstatus": "disable" + }, + "vlancreate-items": { + "trapstatus": "disable" + }, + "vlandelete-items": { + "trapstatus": "disable" + } + } + } + }, + "operErr": "", + "operSt": "enabled" + }, + "span-items": { + "adminSt": "enabled", + "name": "", + "operSt": "enabled" + }, + "stp-items": { + "adminSt": "enabled", + "inst-items": { + "adminSt": "enabled", + "bridge": "enabled", + "ctrl": "normal", + "fcoe": "enabled", + "if-items": { + "If-list": [ + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/111", + "linkType": "auto", + "mode": "default", + "name": "eth1/111", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/36", + "linkType": "auto", + "mode": "default", + "name": "eth1/36", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/60", + "linkType": "auto", + "mode": "default", + "name": "eth1/60", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/110", + "linkType": "auto", + "mode": "default", + "name": "eth1/110", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/97", + "linkType": "auto", + "mode": "default", + "name": "eth1/97", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/37", + "linkType": "auto", + "mode": "default", + "name": "eth1/37", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/13", + "linkType": "auto", + "mode": "default", + "name": "eth1/13", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/107", + "linkType": "auto", + "mode": "default", + "name": "eth1/107", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/15", + "linkType": "auto", + "mode": "default", + "name": "eth1/15", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/103", + "linkType": "auto", + "mode": "default", + "name": "eth1/103", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/12", + "linkType": "auto", + "mode": "default", + "name": "eth1/12", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/96", + "linkType": "auto", + "mode": "default", + "name": "eth1/96", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/124", + "linkType": "auto", + "mode": "default", + "name": "eth1/124", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/101", + "linkType": "auto", + "mode": "default", + "name": "eth1/101", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/90", + "linkType": "auto", + "mode": "default", + "name": "eth1/90", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/69", + "linkType": "auto", + "mode": "default", + "name": "eth1/69", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/120", + "linkType": "auto", + "mode": "default", + "name": "eth1/120", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/72", + "linkType": "auto", + "mode": "default", + "name": "eth1/72", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/113", + "linkType": "auto", + "mode": "default", + "name": "eth1/113", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/22", + "linkType": "auto", + "mode": "default", + "name": "eth1/22", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/29", + "linkType": "auto", + "mode": "default", + "name": "eth1/29", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/33", + "linkType": "auto", + "mode": "default", + "name": "eth1/33", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/78", + "linkType": "auto", + "mode": "default", + "name": "eth1/78", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/25", + "linkType": "auto", + "mode": "default", + "name": "eth1/25", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/65", + "linkType": "auto", + "mode": "default", + "name": "eth1/65", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/44", + "linkType": "auto", + "mode": "default", + "name": "eth1/44", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/59", + "linkType": "auto", + "mode": "default", + "name": "eth1/59", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/40", + "linkType": "auto", + "mode": "default", + "name": "eth1/40", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/117", + "linkType": "auto", + "mode": "default", + "name": "eth1/117", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/104", + "linkType": "auto", + "mode": "default", + "name": "eth1/104", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/42", + "linkType": "auto", + "mode": "default", + "name": "eth1/42", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/61", + "linkType": "auto", + "mode": "default", + "name": "eth1/61", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/86", + "linkType": "auto", + "mode": "default", + "name": "eth1/86", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/49", + "linkType": "auto", + "mode": "default", + "name": "eth1/49", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/21", + "linkType": "auto", + "mode": "default", + "name": "eth1/21", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/4", + "linkType": "auto", + "mode": "default", + "name": "eth1/4", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/87", + "linkType": "auto", + "mode": "default", + "name": "eth1/87", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/95", + "linkType": "auto", + "mode": "default", + "name": "eth1/95", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/9", + "linkType": "auto", + "mode": "default", + "name": "eth1/9", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/19", + "linkType": "auto", + "mode": "default", + "name": "eth1/19", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/14", + "linkType": "auto", + "mode": "default", + "name": "eth1/14", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/53", + "linkType": "auto", + "mode": "default", + "name": "eth1/53", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/46", + "linkType": "auto", + "mode": "default", + "name": "eth1/46", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/10", + "linkType": "auto", + "mode": "default", + "name": "eth1/10", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/126", + "linkType": "auto", + "mode": "default", + "name": "eth1/126", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/62", + "linkType": "auto", + "mode": "default", + "name": "eth1/62", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/17", + "linkType": "auto", + "mode": "default", + "name": "eth1/17", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/50", + "linkType": "auto", + "mode": "default", + "name": "eth1/50", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/84", + "linkType": "auto", + "mode": "default", + "name": "eth1/84", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/32", + "linkType": "auto", + "mode": "default", + "name": "eth1/32", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/35", + "linkType": "auto", + "mode": "default", + "name": "eth1/35", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/70", + "linkType": "auto", + "mode": "default", + "name": "eth1/70", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/81", + "linkType": "auto", + "mode": "default", + "name": "eth1/81", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/67", + "linkType": "auto", + "mode": "default", + "name": "eth1/67", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/48", + "linkType": "auto", + "mode": "default", + "name": "eth1/48", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/31", + "linkType": "auto", + "mode": "default", + "name": "eth1/31", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/75", + "linkType": "auto", + "mode": "default", + "name": "eth1/75", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/43", + "linkType": "auto", + "mode": "default", + "name": "eth1/43", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/119", + "linkType": "auto", + "mode": "default", + "name": "eth1/119", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/123", + "linkType": "auto", + "mode": "default", + "name": "eth1/123", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/8", + "linkType": "auto", + "mode": "default", + "name": "eth1/8", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/76", + "linkType": "auto", + "mode": "default", + "name": "eth1/76", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/58", + "linkType": "auto", + "mode": "default", + "name": "eth1/58", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/28", + "linkType": "auto", + "mode": "default", + "name": "eth1/28", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/98", + "linkType": "auto", + "mode": "default", + "name": "eth1/98", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/105", + "linkType": "auto", + "mode": "default", + "name": "eth1/105", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/30", + "linkType": "auto", + "mode": "default", + "name": "eth1/30", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/66", + "linkType": "auto", + "mode": "default", + "name": "eth1/66", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/127", + "linkType": "auto", + "mode": "default", + "name": "eth1/127", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/7", + "linkType": "auto", + "mode": "default", + "name": "eth1/7", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/73", + "linkType": "auto", + "mode": "default", + "name": "eth1/73", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/27", + "linkType": "auto", + "mode": "default", + "name": "eth1/27", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/100", + "linkType": "auto", + "mode": "default", + "name": "eth1/100", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/18", + "linkType": "auto", + "mode": "default", + "name": "eth1/18", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/20", + "linkType": "auto", + "mode": "default", + "name": "eth1/20", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/23", + "linkType": "auto", + "mode": "default", + "name": "eth1/23", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/54", + "linkType": "auto", + "mode": "default", + "name": "eth1/54", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/45", + "linkType": "auto", + "mode": "default", + "name": "eth1/45", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/106", + "linkType": "auto", + "mode": "default", + "name": "eth1/106", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/91", + "linkType": "auto", + "mode": "default", + "name": "eth1/91", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/116", + "linkType": "auto", + "mode": "default", + "name": "eth1/116", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/1", + "linkType": "auto", + "mode": "default", + "name": "eth1/1", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/63", + "linkType": "auto", + "mode": "default", + "name": "eth1/63", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/57", + "linkType": "auto", + "mode": "default", + "name": "eth1/57", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/79", + "linkType": "auto", + "mode": "default", + "name": "eth1/79", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/85", + "linkType": "auto", + "mode": "default", + "name": "eth1/85", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/125", + "linkType": "auto", + "mode": "default", + "name": "eth1/125", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/122", + "linkType": "auto", + "mode": "default", + "name": "eth1/122", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/6", + "linkType": "auto", + "mode": "default", + "name": "eth1/6", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/74", + "linkType": "auto", + "mode": "default", + "name": "eth1/74", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/16", + "linkType": "auto", + "mode": "default", + "name": "eth1/16", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/51", + "linkType": "auto", + "mode": "default", + "name": "eth1/51", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/80", + "linkType": "auto", + "mode": "default", + "name": "eth1/80", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/3", + "linkType": "auto", + "mode": "default", + "name": "eth1/3", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/115", + "linkType": "auto", + "mode": "default", + "name": "eth1/115", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/38", + "linkType": "auto", + "mode": "default", + "name": "eth1/38", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/108", + "linkType": "auto", + "mode": "default", + "name": "eth1/108", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/121", + "linkType": "auto", + "mode": "default", + "name": "eth1/121", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/92", + "linkType": "auto", + "mode": "default", + "name": "eth1/92", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/88", + "linkType": "auto", + "mode": "default", + "name": "eth1/88", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/68", + "linkType": "auto", + "mode": "default", + "name": "eth1/68", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/71", + "linkType": "auto", + "mode": "default", + "name": "eth1/71", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/94", + "linkType": "auto", + "mode": "default", + "name": "eth1/94", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/93", + "linkType": "auto", + "mode": "default", + "name": "eth1/93", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/41", + "linkType": "auto", + "mode": "default", + "name": "eth1/41", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/52", + "linkType": "auto", + "mode": "default", + "name": "eth1/52", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/102", + "linkType": "auto", + "mode": "default", + "name": "eth1/102", + "priority": "128" + }, + { + "adminSt": "disabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/2", + "linkType": "auto", + "mode": "default", + "name": "eth1/2", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/11", + "linkType": "auto", + "mode": "default", + "name": "eth1/11", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/128", + "linkType": "auto", + "mode": "default", + "name": "eth1/128", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/89", + "linkType": "auto", + "mode": "default", + "name": "eth1/89", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/83", + "linkType": "auto", + "mode": "default", + "name": "eth1/83", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/26", + "linkType": "auto", + "mode": "default", + "name": "eth1/26", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/24", + "linkType": "auto", + "mode": "default", + "name": "eth1/24", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/34", + "linkType": "auto", + "mode": "default", + "name": "eth1/34", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/118", + "linkType": "auto", + "mode": "default", + "name": "eth1/118", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/55", + "linkType": "auto", + "mode": "default", + "name": "eth1/55", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/109", + "linkType": "auto", + "mode": "default", + "name": "eth1/109", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/99", + "linkType": "auto", + "mode": "default", + "name": "eth1/99", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/64", + "linkType": "auto", + "mode": "default", + "name": "eth1/64", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/112", + "linkType": "auto", + "mode": "default", + "name": "eth1/112", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/77", + "linkType": "auto", + "mode": "default", + "name": "eth1/77", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/47", + "linkType": "auto", + "mode": "default", + "name": "eth1/47", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/114", + "linkType": "auto", + "mode": "default", + "name": "eth1/114", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/5", + "linkType": "auto", + "mode": "default", + "name": "eth1/5", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/56", + "linkType": "auto", + "mode": "default", + "name": "eth1/56", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/39", + "linkType": "auto", + "mode": "default", + "name": "eth1/39", + "priority": "128" + }, + { + "adminSt": "enabled", + "bpdufilter": "default", + "bpduguard": "default", + "cost": "0", + "ctrl": "", + "guard": "default", + "id": "eth1/82", + "linkType": "auto", + "mode": "default", + "name": "eth1/82", + "priority": "128" + } + ] + }, + "l2GStpDomId": "1024", + "loopguard": "disabled", + "mode": "pvrst", + "mstent-items": { + "adminSt": "disabled", + "fwdTime": "15", + "helloTime": "2", + "maxAge": "20", + "maxHops": "20", + "mst-items": { + "MstDom-list": [ + { + "bridgeAddress": "00:00:00:00:00:00", + "bridgePriority": "0", + "cfgSt": "enabled", + "diameter": "2", + "id": "0", + "priority": "32768", + "root": "primary", + "rootAddress": "00:00:00:00:00:00", + "rootMode": "disabled", + "rootPathCost": "0", + "rootPort": "unspecified", + "rootPortNumber": "0", + "rootPortPriority": "0", + "rootPriority": "0", + "rootType": "none", + "vlanRange": "1-4094" + } + ] + }, + "operErr": "", + "rev": "0", + "simulate": "enabled" + }, + "operErr": "", + "pathcostOp": "short", + "vlan-items": { + "Vlan-list": [ + { + "adminSt": "enabled", + "bridgeAddress": "52:54:00:5A:F8:BC", + "bridgePriority": "32769", + "diameter": "2", + "fwdTime": "15", + "helloTime": "2", + "id": "1", + "if-items": { + "VlanIf-list": [ + { + "bound": "false", + "designatedBridgeAddress": "52:54:00:E6:DC:4D", + "designatedBridgePriority": "32768", + "designatedPortNumber": "11", + "designatedPortPriority": "128", + "designatedRootAddress": "52:54:00:0F:09:2F", + "designatedRootCost": "100", + "designatedRootPriority": "32768", + "dispute": "false", + "id": "eth1/1", + "inconsistent": "false", + "mode": "normal", + "operBpdufilter": "false", + "operBpduguard": "false", + "operLoopguard": "false", + "operPortfast": "false", + "p2p": "true", + "peer": "true", + "portNumber": "1", + "portPathCost": "4", + "portPriority": "128", + "portRole": "root", + "portState": "forwarding", + "prestd": "false", + "vpcState": "none" + } + ] + }, + "maxAge": "20", + "priority": "32768", + "protocol": "rstp", + "rootAddress": "52:54:00:0F:09:2F", + "rootMode": "disabled", + "rootPathCost": "104", + "rootPort": "eth1/1", + "rootPortNumber": "1", + "rootPortPriority": "128", + "rootPriority": "32768", + "rootType": "none" + } + ] + } + }, + "operSt": "enabled" + }, + "sysmgr-items": { + "adminSt": "0", + "name": "sysmgr", + "operSt": "unknown", + "sysCfg-items": { + "cfgMode": "init", + "operDataMode": "done" + } + }, + "systemTable-items": { + "isControllerConfigured": "false", + "mgmtIp": "192.168.101.14", + "nxdbEnabled": "true", + "purgeDBRequest": "never", + "stTime": "never", + "switchType": "N9K-9000v" + }, + "systemUpTime": "00:00:00:00.000", + "time-items": { + "adminSt": "enabled", + "authSt": "disabled", + "clock": "2020-10-09T18:03:23.489+00:00", + "clockRaw": "1602266603489", + "descr": "", + "flags": "", + "leap": "0", + "logging": "disabled", + "loggingLevel": "critical", + "master": "disabled", + "masterStratum": "8", + "name": "default", + "ownerKey": "", + "ownerTag": "", + "peer": "0", + "poll": "0", + "precision": "0", + "refId": "0.0.0.0", + "refTime": "1970-01-01T00:00:00.000+00:00", + "refTimeRaw": "0", + "rootDelay": "0", + "rootDispersion": "0", + "srvStatus": "0", + "stratum": "0" + }, + "udld-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "userext-items": { + "authrealm-items": { + "aaagroup-items": { + "AaaServerGroup-list": [ + { + "name": "radius", + "protocol": "radius" + } + ] + }, + "consoleauth-items": { + "authProtocol": "pap", + "errEn": "false", + "fallback": "yes", + "local": "no", + "none": "no", + "realm": "local" + }, + "consoleauthor-items": { + "ConsoleAuthor-list": [ + { + "authorMethodNone": "false", + "cmdType": "config", + "localRbac": "true", + "name": "Author", + "realm": "tacacs" + }, + { + "authorMethodNone": "false", + "cmdType": "exec", + "localRbac": "true", + "name": "Author", + "realm": "tacacs" + } + ] + }, + "defRolePolicy": "assign-default-role", + "defaultacc-items": { + "accMethodNone": "false", + "localRbac": "true", + "name": "Accounting", + "realm": "local" + }, + "defaultauth-items": { + "authProtocol": "pap", + "errEn": "false", + "fallback": "yes", + "local": "yes", + "none": "no", + "realm": "local" + }, + "defaultauthor-items": { + "DefaultAuthor-list": [ + { + "authorMethodNone": "false", + "cmdType": "config", + "localRbac": "true", + "name": "Author", + "realm": "tacacs" + }, + { + "authorMethodNone": "false", + "cmdType": "exec", + "localRbac": "true", + "name": "Author", + "realm": "tacacs" + } + ] + }, + "loggingLevel": "Error", + "pkisshcert-items": { + "local": "false", + "realm": "local" + }, + "pkisshpubkey-items": { + "local": "false", + "realm": "local" + }, + "radDirectedReq": "no", + "tacDirectedReq": "no" + }, + "domain-items": { + "Domain-list": [ + { + "name": "all" + } + ] + }, + "name": "rootep", + "pkiext-items": { + "webtokendata-items": { + "maximumValidityPeriod": "24", + "sessionRecordFlags": "login,logout,refresh", + "siteFingerprint": "", + "uiIdleTimeoutSeconds": "1200", + "webtokenTimeoutSeconds": "600" + } + }, + "pwdMaxLength": "127", + "pwdMinLength": "8", + "pwdSecureMode": "yes", + "pwdStrengthCheck": "no", + "pwdprofile-items": { + "changeCount": "2", + "changeDuringInterval": "enable", + "changeInterval": "48", + "expirationWarnTime": "15", + "historyCount": "5", + "noChangeInterval": "24" + }, + "radiusext-items": { + "deadtime": "0", + "keyEnc": "0", + "loggingLevel": "Error", + "radiusprovidergroup-items": { + "RadiusProviderGroup-list": [ + { + "deadtime": "0", + "name": "radius", + "snmpIndex": "0", + "vrf": "default" + } + ] + }, + "retries": "1", + "timeout": "5" + }, + "role-items": { + "Role-list": [ + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "dev-ops", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-11", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-12", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "network-admin", + "priv": "admin", + "resetToFactory": "no", + "rolePrivType": "writePriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-6", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "nxdb-operator", + "priv": "operator", + "resetToFactory": "no", + "rolePrivType": "readPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-1", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-7", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "vdc-admin", + "priv": "admin", + "resetToFactory": "no", + "rolePrivType": "writePriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-9", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-4", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-14", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "network-operator", + "priv": "operator", + "resetToFactory": "no", + "rolePrivType": "readPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "vdc-operator", + "priv": "operator", + "resetToFactory": "no", + "rolePrivType": "readPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-5", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-15", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-8", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-3", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "nxdb-admin", + "priv": "admin", + "resetToFactory": "no", + "rolePrivType": "writePriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-13", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-0", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-10", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + }, + { + "denyIntf": "no", + "denyVLAN": "no", + "denyVRF": "no", + "name": "priv-2", + "priv": "", + "resetToFactory": "no", + "rolePrivType": "noDataPriv" + } + ] + }, + "rtfabricResUserEp-items": { + "RtFabricResUserEp-list": [ + { + "tCl": "fabricSecRelnHolder", + "tDn": "UNRES:uni/fabric/secRelnHolder" + } + ] + }, + "svcPwdRecovery": "yes", + "user-items": { + "User-list": [ + { + "accountStatus": "active", + "allowExpired": "no", + "clearPwdHistory": "no", + "expiration": "never", + "expires": "no", + "name": "bthornto", + "pwdLifeTime": "0", + "userdomain-items": { + "UserDomain-list": [ + { + "name": "all", + "role-items": { + "UserRole-list": [ + { + "name": "network-admin", + "privType": "noDataPriv" + } + ] + } + } + ] + } + }, + { + "accountStatus": "active", + "allowExpired": "no", + "clearPwdHistory": "no", + "expiration": "never", + "expires": "no", + "name": "admin", + "pwdLifeTime": "0", + "userdomain-items": { + "UserDomain-list": [ + { + "name": "all", + "role-items": { + "UserRole-list": [ + { + "name": "network-admin", + "privType": "noDataPriv" + } + ] + } + } + ] + } + } + ] + } + }, + "vlanmgr-items": { + "adminSt": "0", + "inst-items": { + "adminSt": "0", + "ctrl": "", + "name": "inst", + "vdcId": "1" + }, + "name": "vlanmgr", + "operSt": "unknown" + }, + "vrfTable-items": { + "vrf-items": { + "VrfEntry-list": [ + { + "ctrlrId": "0", + "genExtraRt": "false", + "name": "default", + "shdwTemplateName": "", + "shdwVrfGenName": "", + "templateStatus": "inactive" + } + ] + } + }, + "vrrp-items": { + "adminSt": "enabled", + "operSt": "enabled" + }, + "xmlns": "http://cisco.com/ns/yang/cisco-nx-os-device" + } +} \ No newline at end of file diff --git a/tests/unit/module_utils/test_path_utils.py b/tests/unit/module_utils/test_path_utils.py new file mode 100644 index 0000000..e42400b --- /dev/null +++ b/tests/unit/module_utils/test_path_utils.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 Red Hat +# GNU General Public License v3.0+ +# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + + +from __future__ import absolute_import, division, print_function + +__metaclass__ = type + +import json +import os +import unittest +from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( + get_path, + to_paths, +) +from ansible.template import Templar + + +class TestPathUtils(unittest.TestCase): + def setUp(self): + self._environment = Templar(loader=None).environment + + def test_get_path_pass(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + path = "a.b.c.d[0]" + result = get_path(var, path, environment=self._environment) + expected = "0" + self.assertEqual(result, expected) + + def test_get_path_pass_wantlist(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + path = "a.b.c.d[0]" + result = get_path( + var, path, environment=self._environment, wantlist=True + ) + expected = ["0"] + self.assertEqual(result, expected) + + def test_get_path_fail(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + path = "a.b.e" + expected = "dict object' has no attribute 'e'" + with self.assertRaises(Exception) as exc: + get_path(var, path, environment=self._environment) + self.assertIn(expected, str(exc.exception)) + + def test_to_paths(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + expected = {"a.b.c.d[0]": 0, "a.b.c.d[1]": 1} + result = to_paths(var) + self.assertEqual(result, expected) + + def test_to_paths_wantlist(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + expected = [{"a.b.c.d[0]": 0, "a.b.c.d[1]": 1}] + result = to_paths(var, wantlist=True) + self.assertEqual(result, expected) + + def test_to_paths_special_char(self): + var = {"a": {"b": {"c": {"Eth1/1": True}}}} + expected = [{"a.b.c['Eth1/1']": True}] + result = to_paths(var, wantlist=True) + self.assertEqual(result, expected) + + def test_to_paths_prepend(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + expected = [{"var.a.b.c.d[0]": 0, "var.a.b.c.d[1]": 1}] + result = to_paths(var, wantlist=True, prepend="var") + self.assertEqual(result, expected) + + def test_to_paths_prepend(self): + var = {"a": {"b": {"c": {"d": [0, 1]}}}} + expected = "must be a string" + with self.assertRaises(Exception) as exc: + to_paths(var, wantlist=True, prepend=5) + self.assertIn(expected, str(exc.exception)) + + def test_roundtrip_large(self): + big_json_path = os.path.join( + os.path.dirname(__file__), "fixtures", "large.json" + ) + with open(big_json_path) as fhand: + big_json = fhand.read() + var = json.loads(big_json) + paths = to_paths(var) + for key, value in paths.items(): + gotten = get_path(var, key, environment=self._environment) + self.assertEqual(gotten, value) From a7faff993398e3ae869c24d32307463eee0fdaa6 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 11:57:17 -0700 Subject: [PATCH 04/17] Fix CI --- .github/workflows/ansible-test.yml | 22 ++++++++++------------ tests/sanity/ignore-2.11.txt | 1 + 2 files changed, 11 insertions(+), 12 deletions(-) create mode 100644 tests/sanity/ignore-2.11.txt diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 6aa52a5..a87c6c5 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -24,7 +24,7 @@ jobs: ansible: # It's important that Sanity is tested against all stable-X.Y branches # Testing against `devel` may fail as new tests are added. - # - stable-2.9 # Only if your collection supports Ansible 2.9 + - stable-2.9 # Only if your collection supports Ansible 2.9 - stable-2.10 - devel runs-on: ubuntu-latest @@ -36,7 +36,7 @@ jobs: - name: Check out code uses: actions/checkout@v2 with: - path: ansible_collections/NAMESPACE/COLLECTION_NAME + path: ansible_collections/ansible/utils - name: Set up Python uses: actions/setup-python@v2 @@ -54,7 +54,7 @@ jobs: # and all python versions ansible supports. - name: Run sanity tests run: ansible-test sanity --docker -v --color - working-directory: ./ansible_collections/NAMESPACE/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/utils ### # Unit tests (OPTIONAL) @@ -69,11 +69,10 @@ jobs: fail-fast: true matrix: ansible: - # - stable-2.9 # Only if your collection supports Ansible 2.9 + - stable-2.9 # Only if your collection supports Ansible 2.9 - stable-2.10 - devel python: - - 2.6 - 2.7 - 3.5 - 3.6 @@ -88,7 +87,7 @@ jobs: - name: Check out code uses: actions/checkout@v2 with: - path: ansible_collections/NAMESPACE/COLLECTION_NAME + path: ansible_collections/ansible/COLLECTION_NAME - name: Set up Python ${{ matrix.ansible }} uses: actions/setup-python@v2 @@ -106,12 +105,12 @@ jobs: # Run the unit tests - name: Run unit test run: ansible-test units -v --color --python ${{ matrix.python }} --docker --coverage - working-directory: ./ansible_collections/NAMESPACE/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/COLLECTION_NAME # ansible-test support producing code coverage date - name: Generate coverage report run: ansible-test coverage xml -v --requirements --group-by command --group-by version - working-directory: ./ansible_collections/NAMESPACE/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/COLLECTION_NAME # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME - uses: codecov/codecov-action@v1 @@ -139,7 +138,6 @@ jobs: - stable-2.10 - devel python: - - 2.6 - 2.7 - 3.5 - 3.6 @@ -154,7 +152,7 @@ jobs: - name: Check out code uses: actions/checkout@v2 with: - path: ansible_collections/NAMESPACE/COLLECTION_NAME + path: ansible_collections/ansible/utils - name: Set up Python ${{ matrix.ansible }} uses: actions/setup-python@v2 @@ -172,12 +170,12 @@ jobs: # Run the integration tests - name: Run integration test run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage - working-directory: ./ansible_collections/NAMESPACE/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/utils # ansible-test support producing code coverage date - name: Generate coverage report run: ansible-test coverage xml -v --requirements --group-by command --group-by version - working-directory: ./ansible_collections/NAMESPACE/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/utils # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME - uses: codecov/codecov-action@v1 diff --git a/tests/sanity/ignore-2.11.txt b/tests/sanity/ignore-2.11.txt new file mode 100644 index 0000000..71674f0 --- /dev/null +++ b/tests/sanity/ignore-2.11.txt @@ -0,0 +1 @@ +plugins/module_utils/path_utils.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node From aa33905ce2773df368cc1847e75d8f4799935382 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 12:01:19 -0700 Subject: [PATCH 05/17] Remove testing aagainst devel --- .github/workflows/ansible-test.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index a87c6c5..3ac8b21 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -26,7 +26,6 @@ jobs: # Testing against `devel` may fail as new tests are added. - stable-2.9 # Only if your collection supports Ansible 2.9 - stable-2.10 - - devel runs-on: ubuntu-latest steps: @@ -71,7 +70,6 @@ jobs: ansible: - stable-2.9 # Only if your collection supports Ansible 2.9 - stable-2.10 - - devel python: - 2.7 - 3.5 From e3af5f53251d093b0029e699eb54006865db4924 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 12:05:16 -0700 Subject: [PATCH 06/17] Disable integration tests until needed --- .github/workflows/ansible-test.yml | 90 +++++++++++++++--------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 3ac8b21..5712486 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -125,57 +125,57 @@ jobs: # multiple versions see the following for an example: # https://github.com/ansible-collections/community.zabbix/tree/master/.github/workflows - integration: - runs-on: ubuntu-latest - name: I (Ⓐ${{ matrix.ansible }}+py${{ matrix.python }}}) - strategy: - fail-fast: false - matrix: - ansible: - # - stable-2.9 # Only if your collection supports Ansible 2.9 - - stable-2.10 - - devel - python: - - 2.7 - - 3.5 - - 3.6 - - 3.7 - - 3.8 - - 3.9 - exclude: - - ansible: stable-2.9 - python: 3.9 + # integration: + # runs-on: ubuntu-latest + # name: I (Ⓐ${{ matrix.ansible }}+py${{ matrix.python }}}) + # strategy: + # fail-fast: false + # matrix: + # ansible: + # # - stable-2.9 # Only if your collection supports Ansible 2.9 + # - stable-2.10 + # - devel + # python: + # - 2.7 + # - 3.5 + # - 3.6 + # - 3.7 + # - 3.8 + # - 3.9 + # exclude: + # - ansible: stable-2.9 + # python: 3.9 - steps: - - name: Check out code - uses: actions/checkout@v2 - with: - path: ansible_collections/ansible/utils + # steps: + # - name: Check out code + # uses: actions/checkout@v2 + # with: + # path: ansible_collections/ansible/utils - - name: Set up Python ${{ matrix.ansible }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python }} + # - name: Set up Python ${{ matrix.ansible }} + # uses: actions/setup-python@v2 + # with: + # python-version: ${{ matrix.python }} - - name: Install ansible-base (${{ matrix.ansible }}) - run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check + # - name: Install ansible-base (${{ matrix.ansible }}) + # run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check # OPTIONAL If your integration test requires Python libraries or modules from other collections # Install them like this - - name: Install collection dependencies - run: ansible-galaxy collection install ansible.netcommon -p . + # - name: Install collection dependencies + # run: ansible-galaxy collection install ansible.netcommon -p . - # Run the integration tests - - name: Run integration test - run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage - working-directory: ./ansible_collections/ansible/utils + # # Run the integration tests + # - name: Run integration test + # run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage + # working-directory: ./ansible_collections/ansible/utils - # ansible-test support producing code coverage date - - name: Generate coverage report - run: ansible-test coverage xml -v --requirements --group-by command --group-by version - working-directory: ./ansible_collections/ansible/utils + # # ansible-test support producing code coverage date + # - name: Generate coverage report + # run: ansible-test coverage xml -v --requirements --group-by command --group-by version + # working-directory: ./ansible_collections/ansible/utils - # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME - - uses: codecov/codecov-action@v1 - with: - fail_ci_if_error: false + # # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME + # - uses: codecov/codecov-action@v1 + # with: + # fail_ci_if_error: false From e6734bf29172ec3e83cfde7b9b7799d0550960a3 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 12:12:43 -0700 Subject: [PATCH 07/17] Additional CI fixes --- .github/workflows/ansible-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 5712486..e59cb6c 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -85,7 +85,7 @@ jobs: - name: Check out code uses: actions/checkout@v2 with: - path: ansible_collections/ansible/COLLECTION_NAME + path: ansible_collections/ansible/utils - name: Set up Python ${{ matrix.ansible }} uses: actions/setup-python@v2 @@ -103,12 +103,12 @@ jobs: # Run the unit tests - name: Run unit test run: ansible-test units -v --color --python ${{ matrix.python }} --docker --coverage - working-directory: ./ansible_collections/ansible/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/utils # ansible-test support producing code coverage date - name: Generate coverage report run: ansible-test coverage xml -v --requirements --group-by command --group-by version - working-directory: ./ansible_collections/ansible/COLLECTION_NAME + working-directory: ./ansible_collections/ansible/utils # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME - uses: codecov/codecov-action@v1 From 61cc4911334b7bc34deb3941b71160208acce129 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Fri, 9 Oct 2020 12:32:48 -0700 Subject: [PATCH 08/17] Test only top 1000 --- tests/unit/module_utils/test_path_utils.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/unit/module_utils/test_path_utils.py b/tests/unit/module_utils/test_path_utils.py index e42400b..7823600 100644 --- a/tests/unit/module_utils/test_path_utils.py +++ b/tests/unit/module_utils/test_path_utils.py @@ -9,6 +9,7 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type import json +import heapq import os import unittest from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( @@ -70,7 +71,7 @@ class TestPathUtils(unittest.TestCase): result = to_paths(var, wantlist=True, prepend="var") self.assertEqual(result, expected) - def test_to_paths_prepend(self): + def test_to_paths_prepend_fail(self): var = {"a": {"b": {"c": {"d": [0, 1]}}}} expected = "must be a string" with self.assertRaises(Exception) as exc: @@ -78,6 +79,8 @@ class TestPathUtils(unittest.TestCase): self.assertIn(expected, str(exc.exception)) def test_roundtrip_large(self): + """ Test the 1000 longest keys, otherwise this takes a _really_ long time + """ big_json_path = os.path.join( os.path.dirname(__file__), "fixtures", "large.json" ) @@ -85,6 +88,7 @@ class TestPathUtils(unittest.TestCase): big_json = fhand.read() var = json.loads(big_json) paths = to_paths(var) - for key, value in paths.items(): - gotten = get_path(var, key, environment=self._environment) - self.assertEqual(gotten, value) + to_tests = heapq.nlargest(1000, list(paths.keys()), key=len) + for to_test in to_tests: + gotten = get_path(var, to_test, environment=self._environment) + self.assertEqual(gotten, paths[to_test]) From 7e1e66587d827ecd74e6ee7d9afc99907deb3063 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Mon, 12 Oct 2020 11:36:17 -0700 Subject: [PATCH 09/17] Add integration tests --- .github/workflows/ansible-test.yml | 100 +++++++++--------- plugins/module_utils/path_utils.py | 2 +- .../targets/get_path/tasks/main.yaml | 58 ++++++++++ .../targets/to_paths/tasks/main.yaml | 52 +++++++++ 4 files changed, 159 insertions(+), 53 deletions(-) create mode 100644 tests/integration/targets/get_path/tasks/main.yaml create mode 100644 tests/integration/targets/to_paths/tasks/main.yaml diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index e59cb6c..aa9967b 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -24,7 +24,7 @@ jobs: ansible: # It's important that Sanity is tested against all stable-X.Y branches # Testing against `devel` may fail as new tests are added. - - stable-2.9 # Only if your collection supports Ansible 2.9 + - stable-2.9 - stable-2.10 runs-on: ubuntu-latest steps: @@ -68,7 +68,7 @@ jobs: fail-fast: true matrix: ansible: - - stable-2.9 # Only if your collection supports Ansible 2.9 + - stable-2.9 - stable-2.10 python: - 2.7 @@ -97,15 +97,15 @@ jobs: # OPTIONAL If your unit test requires Python libraries from other collections # Install them like this - - name: Install collection dependencies - run: ansible-galaxy collection install ansible.netcommon -p . + # - name: Install collection dependencies + # run: ansible-galaxy collection install ansible.netcommon -p . # Run the unit tests - name: Run unit test run: ansible-test units -v --color --python ${{ matrix.python }} --docker --coverage working-directory: ./ansible_collections/ansible/utils - # ansible-test support producing code coverage date + # ansible-test support producing code coverage date - name: Generate coverage report run: ansible-test coverage xml -v --requirements --group-by command --group-by version working-directory: ./ansible_collections/ansible/utils @@ -115,67 +115,63 @@ jobs: with: fail_ci_if_error: false -### +## # Integration tests (RECOMMENDED) -# # https://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html - - # If the application you are testing is available as a docker container and you want to test # multiple versions see the following for an example: # https://github.com/ansible-collections/community.zabbix/tree/master/.github/workflows - # integration: - # runs-on: ubuntu-latest - # name: I (Ⓐ${{ matrix.ansible }}+py${{ matrix.python }}}) - # strategy: - # fail-fast: false - # matrix: - # ansible: - # # - stable-2.9 # Only if your collection supports Ansible 2.9 - # - stable-2.10 - # - devel - # python: - # - 2.7 - # - 3.5 - # - 3.6 - # - 3.7 - # - 3.8 - # - 3.9 - # exclude: - # - ansible: stable-2.9 - # python: 3.9 + integration: + runs-on: ubuntu-latest + name: I (Ⓐ${{ matrix.ansible }}+py${{ matrix.python }}}) + strategy: + fail-fast: false + matrix: + ansible: + - stable-2.9 + - stable-2.10 + python: + - 2.7 + - 3.5 + - 3.6 + - 3.7 + - 3.8 + - 3.9 + exclude: + - ansible: stable-2.9 + python: 3.9 - # steps: - # - name: Check out code - # uses: actions/checkout@v2 - # with: - # path: ansible_collections/ansible/utils + steps: + - name: Check out code + uses: actions/checkout@v2 + with: + path: ansible_collections/ansible/utils - # - name: Set up Python ${{ matrix.ansible }} - # uses: actions/setup-python@v2 - # with: - # python-version: ${{ matrix.python }} + - name: Set up Python ${{ matrix.ansible }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python }} - # - name: Install ansible-base (${{ matrix.ansible }}) - # run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check + - name: Install ansible-base (${{ matrix.ansible }}) + run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check # OPTIONAL If your integration test requires Python libraries or modules from other collections # Install them like this # - name: Install collection dependencies # run: ansible-galaxy collection install ansible.netcommon -p . - # # Run the integration tests - # - name: Run integration test - # run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage - # working-directory: ./ansible_collections/ansible/utils + # Run the integration tests + - name: Run integration test + run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage + working-directory: ./ansible_collections/ansible/utils - # # ansible-test support producing code coverage date - # - name: Generate coverage report - # run: ansible-test coverage xml -v --requirements --group-by command --group-by version - # working-directory: ./ansible_collections/ansible/utils + # ansible-test support producing code coverage date + - name: Generate coverage report + run: ansible-test coverage xml -v --requirements --group-by command --group-by version + working-directory: ./ansible_collections/ansible/utils - # # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME - # - uses: codecov/codecov-action@v1 - # with: - # fail_ci_if_error: false + # See the reports at https://codecov.io/gh/ansible_collections/GITHUBORG/REPONAME + - uses: codecov/codecov-action@v1 + with: + fail_ci_if_error: false diff --git a/plugins/module_utils/path_utils.py b/plugins/module_utils/path_utils.py index e600034..317d55f 100644 --- a/plugins/module_utils/path_utils.py +++ b/plugins/module_utils/path_utils.py @@ -41,7 +41,7 @@ def get_path(var, path, environment, wantlist=False): string_to_variable = "{{ %s }}" % path result = environment.from_string(string_to_variable).render(**var) if wantlist: - return [result] + return list(result) return result diff --git a/tests/integration/targets/get_path/tasks/main.yaml b/tests/integration/targets/get_path/tasks/main.yaml new file mode 100644 index 0000000..41043ff --- /dev/null +++ b/tests/integration/targets/get_path/tasks/main.yaml @@ -0,0 +1,58 @@ +- set_fact: + a: + b: + c: + d: + - 0 + - 1 + +- name: Simple test filter and lookup + assert: + that: "{{ item.result == item.expected }}" + loop: + - result: "{{ vars|ansible.utils.get_path('a') }}" + expected: "{{ a }}" + - result: "{{ a|ansible.utils.get_path('b') }}" + expected: "{{ a.b }}" + - result: "{{ a|ansible.utils.get_path('b.c') }}" + expected: "{{ a.b.c }}" + - result: "{{ a|ansible.utils.get_path('b.c.d') }}" + expected: "{{ a.b.c.d }}" + - result: "{{ a|ansible.utils.get_path('b.c.d[0]') }}" + expected: "{{ a.b.c.d[0] }}" + - result: "{{ a|ansible.utils.get_path('b.c.d[1]') }}" + expected: "{{ a.b.c.d[1] }}" + - result: "{{ a|ansible.utils.get_path('b[\"c\"]') }}" + expected: "{{ a.b.c }}" + - result: "{{ lookup('ansible.utils.get_path', vars, 'a') }}" + expected: "{{ a }}" + - result: "{{ lookup('ansible.utils.get_path', a, 'b') }}" + expected: "{{ a.b }}" + - result: "{{ lookup('ansible.utils.get_path', a, 'b.c') }}" + expected: "{{ a.b.c }}" + - result: "{{ lookup('ansible.utils.get_path', a, 'b.c.d') }}" + expected: "{{ a.b.c.d }}" + - result: "{{ lookup('ansible.utils.get_path', a, 'b.c.d[0]') }}" + expected: "{{ a.b.c.d[0] }}" + - result: "{{ lookup('ansible.utils.get_path', a, 'b.c.d[1]') }}" + expected: "{{ a.b.c.d[1] }}" + - result: "{{ lookup('ansible.utils.get_path', a, 'b[\"c\"]') }}" + expected: "{{ a.b.c }}" + +- set_fact: + a: + b: + c: + d: + - 0 + +- name: Simple test filter and lookup w/ wantlist + assert: + that: "{{ item.result == item.expected }}" + loop: + - result: "{{ vars|ansible.utils.get_path('a.b.c.d[0]', wantlist=True) }}" + expected: + - "{{ a.b.c.d[0] }}" + - result: "{{ lookup('ansible.utils.get_path', vars, 'a.b.c.d[0]', wantlist=True) }}" + expected: + - "{{ a.b.c.d[0] }}" diff --git a/tests/integration/targets/to_paths/tasks/main.yaml b/tests/integration/targets/to_paths/tasks/main.yaml new file mode 100644 index 0000000..0c81f87 --- /dev/null +++ b/tests/integration/targets/to_paths/tasks/main.yaml @@ -0,0 +1,52 @@ +- set_fact: + a: + b: + c: + d: + - 0 + - 1 + +- name: Test filter and lookup plugin, simple and prepend + assert: + that: "{{ item.result == item.expected }}" + loop: + - result: "{{ a|ansible.utils.to_paths }}" + expected: + b.c.d[0]: 0 + b.c.d[1]: 1 + - result: "{{ lookup('ansible.utils.to_paths', a) }}" + expected: + b.c.d[0]: 0 + b.c.d[1]: 1 + - result: "{{ a|ansible.utils.to_paths(prepend='a') }}" + expected: + a.b.c.d[0]: 0 + a.b.c.d[1]: 1 + - result: "{{ lookup('ansible.utils.to_paths', a, prepend='a') }}" + expected: + a.b.c.d[0]: 0 + a.b.c.d[1]: 1 + +- set_fact: + a: + b: + c: + d: + - 0 + +- name: Test filter and lookup plugin, wantlist and prepend + assert: + that: "{{ item.result == item.expected }}" + loop: + - result: "{{ a|ansible.utils.to_paths(wantlist=True) }}" + expected: + - b.c.d[0]: 0 + - result: "{{ lookup('ansible.utils.to_paths', a, wantlist=True) }}" + expected: + - b.c.d[0]: 0 + - result: "{{ a|ansible.utils.to_paths(wantlist=True, prepend='a') }}" + expected: + - a.b.c.d[0]: 0 + - result: "{{ lookup('ansible.utils.to_paths', a, wantlist=True, prepend='a') }}" + expected: + - a.b.c.d[0]: 0 From bdd4ef9c269b0bde2dc61f6c4f823cc96b1e2439 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Mon, 12 Oct 2020 11:59:40 -0700 Subject: [PATCH 10/17] Add job for black --- .github/workflows/black.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/black.yml diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml new file mode 100644 index 0000000..9a489e3 --- /dev/null +++ b/.github/workflows/black.yml @@ -0,0 +1,24 @@ +name: Check formatting with the latest black +on: +- push +- pull_request +jobs: + black: + name: Black (formatting) + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + with: + path: ansible_collections/ansible/utils + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + + - name: Install Black + run: pip install black + + - name: Run black --check + run: black --check ansible_collections/ansible/utils \ No newline at end of file From 3fece8765a312e39f1d21cbe8ee721f55c4d9306 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Mon, 12 Oct 2020 12:04:00 -0700 Subject: [PATCH 11/17] Move black to CI --- .github/workflows/ansible-test.yml | 26 ++++++++++++++++++++++++++ .github/workflows/black.yml | 24 ------------------------ 2 files changed, 26 insertions(+), 24 deletions(-) delete mode 100644 .github/workflows/black.yml diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index aa9967b..43add20 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -175,3 +175,29 @@ jobs: - uses: codecov/codecov-action@v1 with: fail_ci_if_error: false + + +## +# Formatting with black +# Require all code be formatted with black +# with line length 79 + + black: + name: Black (formatting) + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + with: + path: ansible_collections/ansible/utils + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + + - name: Install Black + run: pip install black + + - name: Run black --check + run: black -l79 --check ansible_collections/ansible/utils \ No newline at end of file diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml deleted file mode 100644 index 9a489e3..0000000 --- a/.github/workflows/black.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Check formatting with the latest black -on: -- push -- pull_request -jobs: - black: - name: Black (formatting) - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v2 - with: - path: ansible_collections/ansible/utils - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - - name: Install Black - run: pip install black - - - name: Run black --check - run: black --check ansible_collections/ansible/utils \ No newline at end of file From 2c8602b3f94f858035c5c580f986d0eb3735f8f8 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Mon, 12 Oct 2020 12:11:35 -0700 Subject: [PATCH 12/17] Add diff to black --- .github/workflows/ansible-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 43add20..f506ca2 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -200,4 +200,4 @@ jobs: run: pip install black - name: Run black --check - run: black -l79 --check ansible_collections/ansible/utils \ No newline at end of file + run: black -l79 --diff --check ansible_collections/ansible/utils \ No newline at end of file From fc332195b311ff06ce56bd3d0bc2337c4bce679e Mon Sep 17 00:00:00 2001 From: cidrblock Date: Mon, 12 Oct 2020 12:18:10 -0700 Subject: [PATCH 13/17] Fix black errors --- plugins/filter/paths.py | 6 ++---- plugins/module_utils/path_utils.py | 2 +- tests/unit/module_utils/test_path_utils.py | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/plugins/filter/paths.py b/plugins/filter/paths.py index 03104e3..4d9fce0 100644 --- a/plugins/filter/paths.py +++ b/plugins/filter/paths.py @@ -25,15 +25,13 @@ from jinja2.filters import environmentfilter def _to_paths(*args, **kwargs): - """ Convert complex objects to paths. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst) - """ + """Convert complex objects to paths. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst)""" return to_paths(*args, **kwargs) @environmentfilter def _get_path(*args, **kwargs): - """ Get value using path. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.get_path_lookup.rst) - """ + """Get value using path. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.get_path_lookup.rst)""" kwargs["environment"] = args[0] args = args[1:] return get_path(*args, **kwargs) diff --git a/plugins/module_utils/path_utils.py b/plugins/module_utils/path_utils.py index 317d55f..418ccd5 100644 --- a/plugins/module_utils/path_utils.py +++ b/plugins/module_utils/path_utils.py @@ -27,7 +27,7 @@ except ImportError: def get_path(var, path, environment, wantlist=False): - """ Get the value of a path within an object + """Get the value of a path within an object :param var: The var from which the value is retrieved :type var: should be dict or list, but jinja can sort that out diff --git a/tests/unit/module_utils/test_path_utils.py b/tests/unit/module_utils/test_path_utils.py index 7823600..f9dd975 100644 --- a/tests/unit/module_utils/test_path_utils.py +++ b/tests/unit/module_utils/test_path_utils.py @@ -79,8 +79,7 @@ class TestPathUtils(unittest.TestCase): self.assertIn(expected, str(exc.exception)) def test_roundtrip_large(self): - """ Test the 1000 longest keys, otherwise this takes a _really_ long time - """ + """Test the 1000 longest keys, otherwise this takes a _really_ long time""" big_json_path = os.path.join( os.path.dirname(__file__), "fixtures", "large.json" ) From 729f441e5768e46f242e13b8f853b7ac3e847445 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Mon, 12 Oct 2020 12:28:37 -0700 Subject: [PATCH 14/17] Line length to 160 --- plugins/filter/paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/filter/paths.py b/plugins/filter/paths.py index 4d9fce0..2aad5bb 100644 --- a/plugins/filter/paths.py +++ b/plugins/filter/paths.py @@ -25,7 +25,7 @@ from jinja2.filters import environmentfilter def _to_paths(*args, **kwargs): - """Convert complex objects to paths. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst)""" + """Convert objects to paths. [See examples](https://github.com/ansible-collections/ansible.utils/blob/main/docs/ansible.utils.to_paths_lookup.rst)""" return to_paths(*args, **kwargs) From dadc33dc55a50ec13c74a90cbbfd6f88df2facd8 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Tue, 13 Oct 2020 06:52:48 -0700 Subject: [PATCH 15/17] Auto-release --- .github/workflows/publish.yml | 34 ++++++++++++++++++++++++++++++++++ galaxy.yml | 5 ++--- 2 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..8f9f513 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,34 @@ + +name: Publish +on: + release: + types: [created] + +jobs: + publish: + name: Publish to galaxy + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + + - name: Install ansible-base + run: pip install ansible-base + + - name: Update the galaxy.yml with the release + env: + VERSION: ${{ github.event.release.tag_name }} + run: | + sed 's/{{ version }}/'$VERSION'/' galaxy.yml + cat galaxy.yml + + # - name: Build and publish + # env: + # ANSIBLE_GALAXY_API_KEY: ${{ secrets.ANSIBLE_GALAXY_API_KEY }} + # run: | + # ansible-galaxy collection build + # ansible-galaxy collection publish *.tar.gz --api-key $ANSIBLE_GALAXY_API_KEY diff --git a/galaxy.yml b/galaxy.yml index 24a96ad..0b8f8bf 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,6 +8,5 @@ description: Ansible Collection with utilities to ease the management, manipulat readme: README.md repository: https://github.com/ansible-collections/ansible.utils tags: [networking, security, cloud, utilities, data, validation] -# NOTE(pabelanger): We create an empty version key to keep ansible-galaxy -# happy. We dynamically inject version info based on git information. -version: null +# this will be updated by a gh action prior to push +version: {{ version }} From 0c988dbb38762e476541981cc97c638ee399d36d Mon Sep 17 00:00:00 2001 From: cidrblock Date: Tue, 13 Oct 2020 07:04:06 -0700 Subject: [PATCH 16/17] Fix sanity --- .github/workflows/publish.yml | 4 ++-- galaxy.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8f9f513..cf9e7bf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,8 +1,8 @@ - name: Publish on: release: - types: [created] + types: + - created jobs: publish: diff --git a/galaxy.yml b/galaxy.yml index 0b8f8bf..aeaa9b1 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,4 +9,5 @@ readme: README.md repository: https://github.com/ansible-collections/ansible.utils tags: [networking, security, cloud, utilities, data, validation] # this will be updated by a gh action prior to push -version: {{ version }} +# do not modify, see /github/workflows/publish.yml +version: 0.0.0 From ac041e21a0524038da8971ae7730ad588bbc8921 Mon Sep 17 00:00:00 2001 From: cidrblock Date: Tue, 13 Oct 2020 08:50:48 -0700 Subject: [PATCH 17/17] Move to common/utils.py --- plugins/filter/paths.py | 2 +- plugins/lookup/get_path.py | 2 +- plugins/lookup/to_paths.py | 2 +- plugins/module_utils/{path_utils.py => common/path.py} | 0 tests/sanity/ignore-2.10.txt | 2 +- tests/sanity/ignore-2.11.txt | 2 +- tests/sanity/ignore-2.9.txt | 2 +- tests/unit/module_utils/test_path_utils.py | 2 +- 8 files changed, 7 insertions(+), 7 deletions(-) rename plugins/module_utils/{path_utils.py => common/path.py} (100%) diff --git a/plugins/filter/paths.py b/plugins/filter/paths.py index 2aad5bb..5db797c 100644 --- a/plugins/filter/paths.py +++ b/plugins/filter/paths.py @@ -17,7 +17,7 @@ from ansible.module_utils.common._collections_compat import ( MutableMapping, ) -from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( +from ansible_collections.ansible.utils.plugins.module_utils.common.path import ( to_paths, get_path, ) diff --git a/plugins/lookup/get_path.py b/plugins/lookup/get_path.py index 2d46d0b..4d6bc9b 100644 --- a/plugins/lookup/get_path.py +++ b/plugins/lookup/get_path.py @@ -156,7 +156,7 @@ RETURN = """ """ from ansible.plugins.lookup import LookupBase -from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( +from ansible_collections.ansible.utils.plugins.module_utils.common.path import ( get_path, ) diff --git a/plugins/lookup/to_paths.py b/plugins/lookup/to_paths.py index be8d2c3..f1a2137 100644 --- a/plugins/lookup/to_paths.py +++ b/plugins/lookup/to_paths.py @@ -140,7 +140,7 @@ RETURN = """ """ from ansible.plugins.lookup import LookupBase -from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( +from ansible_collections.ansible.utils.plugins.module_utils.common.path import ( to_paths, ) diff --git a/plugins/module_utils/path_utils.py b/plugins/module_utils/common/path.py similarity index 100% rename from plugins/module_utils/path_utils.py rename to plugins/module_utils/common/path.py diff --git a/tests/sanity/ignore-2.10.txt b/tests/sanity/ignore-2.10.txt index 71674f0..cf4712f 100644 --- a/tests/sanity/ignore-2.10.txt +++ b/tests/sanity/ignore-2.10.txt @@ -1 +1 @@ -plugins/module_utils/path_utils.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node +plugins/module_utils/common/path.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node diff --git a/tests/sanity/ignore-2.11.txt b/tests/sanity/ignore-2.11.txt index 71674f0..cf4712f 100644 --- a/tests/sanity/ignore-2.11.txt +++ b/tests/sanity/ignore-2.11.txt @@ -1 +1 @@ -plugins/module_utils/path_utils.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node +plugins/module_utils/common/path.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node diff --git a/tests/sanity/ignore-2.9.txt b/tests/sanity/ignore-2.9.txt index 71674f0..cf4712f 100644 --- a/tests/sanity/ignore-2.9.txt +++ b/tests/sanity/ignore-2.9.txt @@ -1 +1 @@ -plugins/module_utils/path_utils.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node +plugins/module_utils/common/path.py pylint:ansible-bad-module-import # file's use is limited to filter and lookups on control node diff --git a/tests/unit/module_utils/test_path_utils.py b/tests/unit/module_utils/test_path_utils.py index f9dd975..52430e7 100644 --- a/tests/unit/module_utils/test_path_utils.py +++ b/tests/unit/module_utils/test_path_utils.py @@ -12,7 +12,7 @@ import json import heapq import os import unittest -from ansible_collections.ansible.utils.plugins.module_utils.path_utils import ( +from ansible_collections.ansible.utils.plugins.module_utils.common.path import ( get_path, to_paths, )